My SQL Express database has run out of room so I'm migrating my heavy data from the old "image" blob columns to the new (varbinary) "filestream" columns in SQL Server 2008.
I was about to write an application to do it, but I thought there may be a clever way to do it in SQL that I hadn't thought of.
Does anyone know of a way to achieve this in a simple manner in SQL?
Assume I have the following table:
TABLE: [Data]
COLUMN: ID INT
COLUMN: ImageFile IMAGE
COLUMN: FileStreamFile VARBINARY(MAX) FILESTREAM DEFAULT(0x)
Obviously with the ImageFile being the old column I want to migrate to FileStreamFile