How to copy varbinary datas from one table to another in sqlserver2005?
i tried with a query
insert into Newtable(column list) select * from oldtable;
here some table values are varbinary, except varbianry datas are copying with this query.How to copy varbinary data?