views:

243

answers:

1

I have a VS 2005 application using C++ . It basically importing a large XML of around 9 GB into the application . After running for more than 18 hrs it gave an exception 0xc0000006 In page error. THe virtual memory consumed is 2.6 GB (I have set the 3GB) flag.

Does any one have a clue as to what caused this error and what could be the solution

+1  A: 

Probably you are out of memory. Can you run it again on a 64 bit machine?

1800 INFORMATION
But then why would it give an "In page error"
sameer karjatkar
Programs often do inexplicable things in response to OOM conditions. There is little to be gained from trying to figure them out, unless you have a requirement to run under low memory conditions
1800 INFORMATION