How to insert this value into the XML column without changing anything in the XML format.
DECLARE @XML TABLE (fldID INT, fldXML XML)
INSERT INTO @XML (fldID, fldXML)
SELECT 1,'
'
SELECT * FROM @XML
The Problem here is, it is not taking the single quotes (') values in the XML part.