Posted on: 6/17/2014 3:30:03 AM | Views : 422

When I use SSMS to generate an INSERT query it always adds some XML and datatypes. is it possible to turn this off?
eg. I get this
INSERT INTO [dbo].[ConvertedReports]            ([ReportName]            ,[Converted])      VALUES            (<ReportName, nvarchar(255),>            ,<Converted, bit,>)
I want this

INSERT INTO [dbo].[ConvertedReports]            ([ReportName]            ,[Converted])      VALUES            (ReportName,          &nb ...

Go to the complete details ...