SQL 2005 : 9.00.1399.06
SQL 2005 SP1 : 9.00.2047.00
SQL 2005 SP2 : 9.00.3043.00
SQL 2005 SP3 : 9.00.4035.00
SQL 2008 RTM : 10.0.1600.22
SQL 2008 SP1 : 10.00.2531.00
SQL Azure CTP1 : 10.00.9006.81
SQL 2008 R2 CTP1 : 10.50.1092.20
This is a serie of 4 interesting articles discussing better ways to handle BLOB with SQL Server.
where you will find how to insert a BLOB directly in the Database :
INSERT INTO BLOBTest (BLOBName, BLOBData) SELECT 'First test file', BulkColumn FROM OPENROWSET( Bulk 'C:\temp\nextup.jpg', SINGLE_BLOB) AS BLOB
No Comments