Writer instructions | |
---|---|
Page title | For most spaces, this page must be titled Space announcements. For spaces with localized content, this page must be titled Space announcements l10n. |
Purpose | Provide an announcement banner on every page of your space. |
Location | Move this page outside of your home branch. |
Guidelines |
VARBINARY(binary_string_expression, length)
The VARBINARY function returns a varying-length binary string that consists of the binary string expression having length, as specified by the function's second argument. The first argument data type is either binary or varbinary. The second argument is a numerical integer constant having a value in the range of 1 through 32704.
If the first argument is nullable, the result will be nullable and if the first argument is null, the result will be the null value.
The following guidelines apply to the second argument:
- The specified length is treated as the maximum length.
- The actual length of the result will be the minimum of the string expression and the specified length.
- If the length is shorter than the source, the string will be truncated without warning.