- Notifications
You must be signed in to change notification settings - Fork0
In this article I am going to write about SQLBulkCopy and its major properties and methods. This article will give you the code for high performance transfer of rows from XML file to SQL server with SQLBulkCopy and C#.
geeksarray/bulk-upload-into-sql-server-using-sqlbulkcopy-and-c-sharp
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
In this article I am going to write about SQLBulkCopy and its major properties and methods. This article will give you the code for high performance transfer of rows from XML file to SQL server with SQLBulkCopy and C#.
SQLBulkCopy introduced as part of .Net framework 2.0. It is simple and easy tool to transfer complicated or simple data from one data source to other. You can read data from any data source as long as that data can be load to DataTable or read by IDataReader and transfer the data with high performance to SQL Server using SQLBulkCopy.
- CustomerBulkUpload/Program.cs - has all required code to read XML file and copy to SQL Server using SQLBulkCopy.
- CustomerBulkUpload/BulkUploadOrders.xml - XML file used by SQLBulkCopy to read data.
For more details visit -https://geeksarray.com/blog/bulk-upload-into-sql-server-using-sqlbulkcopy-and-c-sharp
About
In this article I am going to write about SQLBulkCopy and its major properties and methods. This article will give you the code for high performance transfer of rows from XML file to SQL server with SQLBulkCopy and C#.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.