vote up 1 vote down star

How do you copy an image data type (or varbinary(max)) from one table to another in SQL Server, without having to save the data to a file first?

flag

2 Answers

vote up 2 vote down check

You select the records from one table and insert into another. As you do it in the same query, the data doesn't leave the database, so you don't have to store it anywhere.

Example:

insert into SomeTable (SomeId, SomeBinaryField)
select SomeId, SomeBinaryField
from SomeOtherTable
where SomeId = 42
link|flag
vote up 0 vote down

You can just use an insert statement with a SELECT clause, for example:

declare @t1 table (t1 image)
declare @t2 table (t2 image)
insert into @t2 select t.t1 as t2 from @t1 as t

You can get full details about the INSERT statement here:

http://msdn.microsoft.com/en-us/library/ms174335.aspx

link|flag

Your Answer

Get an OpenID
or

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