How do I write the SQL code to INSERT (or UPDATE) an array of values (with probably an attendant array of fieldnames, or with a matrix with them both) without simple iteration?
|
|
|
|
|
|
|
I construct the list as an xml string and pass it to the stored procs. In SQL 2005, it has enhanced xml functionalities to parse the xml and do a bulk insert. check this post: Passing lists to SQL Server 2005 with XML Parameters |
||
|
|
|
If your data is already in the database you could use
|
||
|
|
|
|
I understand that you are talking about writing stored procedure to accept array of values With SQL Server 2005 you would need to use XML variable SQL 2008 adds support to table variable as parameters Here you can find good examples of passing a table to a stored procedure as XML and as table variable (SQL Server 2008) |
|||
|
|
|
|
Simple way to concatenate the values into a list and pass it to the sp. In the sp use dbo.Split udf to convert back to resultset (table). Create this function:
and then try:
|
||
|
|
