vote up 3 vote down star

Hi,

How can I easily insert a blob into a varbinary(MAX) field?

for argument sake:

assume the thing I want to insert is: c:\picture.png the table is mytable the column is mypictureblob and the place is recid=1

I've been googling for some time and I can't find a simple solution

thanks!

flag

76% accept rate

3 Answers

vote up 2 vote down check

You can insert into a varbinary(max) field using T-SQL within SQL Server Management Studio and in particular using the OPENROWSET commmand.

For example:

INSERT Production.ProductPhoto 
(
    ThumbnailPhoto, 
    ThumbnailPhotoFilePath, 
    LargePhoto, 
    LargePhotoFilePath
)
SELECT ThumbnailPhoto.*, null, null, N'tricycle_pink.gif'
FROM OPENROWSET 
    (BULK 'c:\images\tricycle.jpg', SINGLE_BLOB) ThumbnailPhoto

Take a look at the following documentation for a good example/walkthrough

Working With Large Value Types

link|flag
TSQL as in with the 'new query' button on the top toolbar right? – reinier Oct 29 at 13:35
T-SQL is the query language that SQL Server uses. Yes, you will need to create a new query...... – John Sansom Oct 29 at 13:39
thanks! will give this a whirl – reinier Oct 29 at 14:07
You're welcome. – John Sansom Oct 29 at 14:20
john...I'm trying to understand the syntax, but I'm failing miserably. Given the example I posted above and there are also 3 other colums: column1, column2, and column3. How would the SQL look? – reinier Oct 29 at 14:26
show 4 more comments
vote up 0 vote down

Do you need to do it from mgmt studio? Here's how we do it from cmd line:

"C:\Program Files\Microsoft SQL Server\MSSQL\Binn\TEXTCOPY.exe" /S < Server> /D < DataBase> /T mytable /C mypictureblob /F "C:\picture.png" /W"where RecId=" /I

link|flag
euh.... ok... but how does it know which database to connect to? – reinier Oct 29 at 13:32
sorry, looks like some of my comments were striped. the /S option is the server and /D is database – cagreen Oct 29 at 13:34
hi thanks!, But what about the password/username? – reinier Oct 29 at 13:36
[/U [login]] [/P [password]] – cagreen Oct 29 at 13:37
It is not supplied anymore with sql 2005 =^( – reinier Oct 29 at 14:22
vote up 0 vote down

Ok... this took me way too long. The sql-management studio tool is just not up to simple things like this (which I've noticed before when looking for where to set the timeout on queries, and it was done in 4 different locations)

I downloaded some other sql editor package (sql maestro in my case). And behold it includes a blob editor where you can look at blobs, and load new blobs into these field.

thanks for the input!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.