How to read a 180mb xml file in asp.net
-
I have a requirement in which i have to import an xml file of 180mb into the database. i tried to read the file using stringbuilder,session....but nothing worked .every time i tried to read the file ..i got an error of out of memory exception.. Please Help, Raghvendra Panda
-
I have a requirement in which i have to import an xml file of 180mb into the database. i tried to read the file using stringbuilder,session....but nothing worked .every time i tried to read the file ..i got an error of out of memory exception.. Please Help, Raghvendra Panda
-
I have a requirement in which i have to import an xml file of 180mb into the database. i tried to read the file using stringbuilder,session....but nothing worked .every time i tried to read the file ..i got an error of out of memory exception.. Please Help, Raghvendra Panda
When I read your question I have to think of something I encountered. My problem had to do with a limitation of Datasets. When the data exceeds about 100mb an 'out of memory' exception is thrown. So if you use a Dataset to read/write the data, then the answer is probably to do this without using a dataset.
-
When I read your question I have to think of something I encountered. My problem had to do with a limitation of Datasets. When the data exceeds about 100mb an 'out of memory' exception is thrown. So if you use a Dataset to read/write the data, then the answer is probably to do this without using a dataset.
that's exactly what my problem is ,i am unable to find a control which can hold huge data upto 200 mb.as i want to pass it as an parameter into the database, i have to send the data as a parameter,kindly suggest me what i should do.