I have a programm in C# which downloads data from 4 sources (2 excel sheets,oracle and access database) and calculate them against each other. In the result I have some big results, I keep the results in List. Amount of rows in the result equals approximately 120.000. One row is about 10MB. The result inserts into access database.
How do I insert this list into my databse? Can someone give me an example?
Now I insert rows into table one by one. It costs me about 3 hours to do that.