Whats the capacity of varbinary data type in MS SQL?

The capacity of varbinary data types in MS SQL:

varbinary [ ( n |0 max) ]

Variable-length binary data. n can be a value from 1 through 8,000. max indicates that the maximum storage size is 2^31-1 bytes. The storage size is the actual length of the data entered + 2 bytes. The data that is entered can be 0 bytes in length.
 
Back
Top