Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
first I read data from an excel file with 1G size and insert it's data in sql database,after that when I fill myDataAdapter to gat data from database for reporting I get out of memory exception.but after reading and inserting data ,if I stop the application and then start it to fill myDataAdapter there is no exception.so I have to stop application after reading and inserting from excel ,then fill DataAdapter after start apllication again to not get out of memory erro .(I use gc.collect after inserting to get unused memory)please help me!!!
Posted
Updated 2-Mar-13 22:15pm
v4

1 solution

Free your "Excel" objects before reading from the database.

Try running on a 64bit machine (compiling to ANY CPU), 32bit has a working memory limit of around 2Gb.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 3-Mar-13 20:10pm    
Valid advice, considering the lack of addition information and any code samples. My 5.
—SA
Mehdi Gholam 4-Mar-13 0:31am    
Thanks Sergey!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900