I need to pass an array of "id's" to a stored procedure, to delete all rows from the table EXCEPT the rows that match id's in the array.
How can I do it in a most simple way?
|
I need to pass an array of "id's" to a stored procedure, to delete all rows from the table EXCEPT the rows that match id's in the array. How can I do it in a most simple way? |
|||||||||||||
|
|
Use a stored procedure: EDIT: A complement for serialize List (or anything else):
The result (ready to use with XML parameter):
ORIGINAL POST: Passing XML as parameter:
|
|||||||||||||||||||
|
|
this is the best source: http://www.sommarskog.se/arrays-in-sql.html create a split function using the link, and use it like:
I prefer the number table approach This is code based on the above link that should do it for you... Before you use my function, you need to set up a "helper" table, you only need to do this one time per database:
use this function to split your string, which does not loop and is very fast:
you can use this function as a table in a join:
here is your delete:
|
|||||
|
|
If you are using Sql Server 2008 or better, you can use something called a Table-Valued Parameter (TVP) instead of serializing & deserializing your list data every time you want to pass it to a stored procedure. Let's start by creating a simple schema to serve as our playground:
With our schema and sample data in place, we are now ready to create our TVP stored procedure:
With both our schema and API in place, we can call the TVP stored procedure from our program like so:
There is probably a less painful way to do this using a more abstract API, such as Entity Framework. However, I do not have the time to see for myself at this time. |
|||||
|
|
You could try this:
|
|||
|
|
|
You could use a temp table which the stored procedure expects to exist. This will work on older versions of SQL Server, which do not support XML etc.
|
||||
|
|
|
I'd consider passing your IDs as an XML string, and then you could shred the XML into a temp table to join against, or you could also query against the XML directly using SP_XML_PREPAREDOCUMENT and OPENXML. |
|||
|
|
|
What about using the XML data type instead of passing an array. I find that a better solution and works well in SQL 2005 |
|||||||||||||
|
|
|||
|
|