Sometimes you need to upgrade the database with many rows that you have in a datatable or you have an array full of data, instead of putting all this data together in a string and then splitting in SQL SERVER, or instead of iterating the datatable in the code row by row and updating database, is there any other way? Is there other type of variables besides the traditional ones in SQL SERVER 2005?
|
|
|
|
|
|
|
There's a few ways to do this. If you're simply inserting rows, then I would create a DataTable object with the information in it, then use the SqlBulkCopy object:
Another option is to wrap your data in xml (however you want to do that), and send it to your stored procedure (which does whatever you need it to do) using the sql 2005 'xml' data type |
||
|
|
|
|
John mentioned using XML... and that's the approach I would use for your situation (SQL Server 2005, and making a sproc that handles the SQL for you). Here's an example of how to get started (this is just a select statement, but you can make it an update if you want):
|
||
|
|
|
|
I agree with John that Note that if you use One other point; if you are dealing with large volumes of data, you might not want to have to load a |
|||
|
|
|
|
You can use Bulk Insert. |
||
|
|
