How can I generate an INSERT script for a table with a VARBINARY(MAX) field?
问题 I have a table with a VARBINARY(MAX) field (SQL Server 2008 with FILESTREAM ) My requirement is that when I go to deploy to production, I can only supply my IT team with a group of SQL scripts to be executed in a certain order. A new table I am making in production has this VARBINARY(MAX) field. Usually with new tables, I will script out the CREATE TABLE script. And, if I have data I need to go with it, I will then script out the INSERT scripts. Not too complicated. But with VARBINARY(MAX) ,