I am using SQL Server 2005. In one of the tables, I have an "xmldefinition" column that is of type ntext. Now the data in this column is very huge and contains all the XML text.
eg: - <root><something1>....</something1></root>
I want to get the whole chain from the management studio and copy it to an XML file so that I can go through the whole XML file manually. But when I query this column and I copy and paste the data into another file, the content is split in the middle and does not end there.
eg: - <root><something1>........<somechar
I believe this will copy only 8196 characters from the XML data in the column. So my question is: how to get the full data for this column manually. However, I can write C # code to read this column, but I want to do it manually in a management studio. Any idea please.
source
share