Reputation: 999
I have to insert 40 million records from a .csv
file into a database and below is the process I followed.
Windows Service 1:
SqlBulkCopy
.Windows Service 2.
Windows Service 1 takes about 30-40 Min but windows service 2 takes about 5 Hours to complete the task (minimum time). I have 2 ways to do this but cannot decide which is better and open for suggestions.
My biggest doubt here is that we are using transactions in procedure and will async work with it because as per my assumption using transaction locks the table and other process needs to work on it.
Upvotes: 1
Views: 2732
Reputation: 1569
I think your using the wrong tool for this job. c# apps might do the trick but there is a much more powerful way to do this using integration services.
I am guessing here, but these tables in the middle are to transform or check, or maybe to batch the import down?
SSIS can do all of these things using it log limit and SQL Bulk Import tools. I currently do hospital data imports which is around 8,000,000 records each night and it takes me a matter of minutes not hours to do.
A good read too around how SQL deals with such large data inputs is this article
Upvotes: 2