Tuesday, May 22, 2012

SqlBulkCopy – Bulk Insertion in SQL Server from .NET

November 5, 2009 by · Leave a Comment 

Many a times there come a scenario when you have to insert large number of records in sql server. There are number of ways to implement this scenario: through looping techniques to call insert statements for one record at a time. Serialize the data in CSV or XML format and send them as a parameter [...]