I have a 200GB table with a column of type image, which I'm planing to convert to a varbinary(MAX). After reading this post about converting NTEXT http://geekswithblogs.net/johnsPerfBlog/archive/2008/04/16/ntext-vs-nvarcharmax-in-sql-2005.aspx the writer suggest to do an
UPDATE testTable
SET testText = testText
After the conversion. Can the same be applied to a conversion between image and varbinary?