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 ...