October 2008
Beginner to intermediate
1024 pages
31h 30m
English
Your first option, of course, is to store BLOB data directly in the table columns of your database. Do this by declaring a column as a varbinary(max) data type, which can store a single BLOB up to 2 gigabytes (GB) in size.
You should no longer use the image data type that was used to store BLOBs prior to SQL Server 2005. The varbinary(max) data type should now be used instead of image, which has been deprecated and may be removed from future versions of SQL Server.
Because BLOB data is stored inline with all the other structured table data, it is tightly integrated with the database. No effort is required on your part ...
Read now
Unlock full access