Hello all
I'm stuck in a huge problem where i need to handle huge data.
I get a data set which has 5 datatables. One of the tables has around 3000 columns and 50,000 records.
I need to save this dataset completely in the SQL database as XML and i need to retrieve it later.
I CAN'T make any design changes to skip it. When i do dataset.GetXml() it returns a string of huge length which throws OutOfMemoryException. I knew that the string datatype has a certain limit to carry data.
But in sql table the xml column can hold upto 2 Gb. So how can i move this dataset back and forth between the database and my application?
Thank you
NLV