![]() ![]() ![]() |
Ispirer SQLWays Database Migration Software
binary, varbinary and image
Binary data types.
binary[(n)]
Fixed-length binary data of n bytes. n must be a value from 1 through 8,000. Storage size is n+4 bytes. When n is not specified in a data definition, the default length is 1.
varbinary[(n)]
Variable-length binary data of n bytes. n must be a value from 1 through 8,000. Storage size is the actual length of the data entered + 4 bytes, not n bytes. The data entered can be 0 bytes in length. When n is not specified in a data definition, the default length is 1.
image
Variable-length binary data from 0 through 2^31-1 (2,147,483,647) bytes.
![]() ![]() ![]() |