Import Data from text file into sql DB using CSLA

Posted by New Developer on Stack Overflow See other posts from Stack Overflow or by New Developer
Published on 2012-09-07T15:30:26Z Indexed on 2012/09/07 15:38 UTC
Read the original article Hit count: 230

Filed under:
|
|
|

I am trying to import data from ~ Delimited Text file into SQL Server using CSLA. My text file has 92,000 records in it. Here are the issues i am having with the import

  1. When i create a BusinnessListBase .new and add all my records to it, it gives me a "Out of meory exception". So to fix it i create a new bussinessbase object and save it. this works fine and is much faster too. It takes 15 minutes
  2. I have to run my program again and check for any changes and hence update them, this is where it takes too much time.
  3. Is there any alternative way to speed up my import?

© Stack Overflow or respective owner

Related posts about sql

Related posts about import