Transact-SQL Reference


SQL Server 2008 Books Online (October 2009)
binary and varbinary (Transact-SQL)

Binary data types of either fixed length or variable length.

binary [ ( n ) ]

Fixed-length binary data with a length of n bytes, where n is a value from 1 through 8,000. The storage size is n bytes.

varbinary [ ( n | 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. The ANSI SQL synonym for varbinary is binary varying.

Remarks

When n is not specified in a data definition or variable declaration statement, the default length is 1. When n is not specified with the CAST function, the default length is 30.

Use binary when the sizes of the column data entries are consistent.

Use varbinary when the sizes of the column data entries vary considerably.

Use varbinary(max) when the column data entries exceed 8,000 bytes.

See Also

Reference

CAST and CONVERT (Transact-SQL)
Data Types (Transact-SQL)

Other Resources

Data Type Conversion (Database Engine)

Help and Information

Getting SQL Server 2008 Assistance
Tags : image


Community Content

Doug V
varbinary replaces image
Note that Microsoft states the image data type is deprecated and will be dropped in a future release of SQL Server. varbinary(max) should suffice as a replacement.
Tags : cycle life image

Page view tracker