How can one call a stored procedure for each row in a table, where the columns of a row are input parameters to the sp without using a Cursor?
|
|
You could do something like this: order your table by e.g. CustomerID (using the AdventureWorks
That should work with any table as long as you can define some kind of an |
|||||||||||||||||||||
|
|
Generally speaking I always look for a set based approach (sometimes at the expense of changing the schema). However, this snippet does have it's place..
|
|||||||||||||
|
Ok, so I would never put such code into production, but it does satisfy your requirements. |
||||
|
|
|
For SQL Server 2005 onwards, you can do this with CROSS APPLY and a table-valued function. Just for clarity, I'm referring to those cases where the stored procedure can be converted into a table valued function. |
|||||
|
|
If you can turn the stored procedure into a function that returns a table, then you can use cross-apply. For example, say you have a table of customers, and you want to compute the sum of their orders, you would create a function that took a CustomerID and returned the sum. And you could do this:
Where the function would look like:
Obviously, the example above could be done without a user defined function in a single query. The drawback is that functions are very limited - many of the features of a stored procedure are not available in a user-defined function, and converting a stored procedure to a function does not always work. |
||||
|
|
|
If you don't what to use a cursor I think you'll have to do it externally (get the table, and then run for each statement and each time call the sp) it Is the same as using a cursor, but only outside SQL. Why won't you use a cursor ? |
|||
|
|
|
Marc's answer is good (I'd comment on it if I could work out how to!) Just thought I'd point out that it may be better to change the loop so the 'select' only exists once. (in a real case where I needed to do this, the select was quite complex, and writing it twice a risky maintenance issue)
|
|||
|
|
|
I usually do it this way when it's a quite a few rows:
(On larger datasets i'd use one of the solutions mentioned above though). |
|||
|
|
|
This is a variation of n3rds solution above. No sorting by using ORDER BY is needed, as MIN() is used. Remember that CustomerID (or whatever other numerical column you use for progress) must have a unique constraint. Furthermore, to make it as fast as possible CustomerID must be indexed on.
I use this approach on some varchars I need to look over, by putting them in a temporary table first, to give them an ID. |
|||
|
|
|
DELIMITER //
|
||||
|
|
|
I like to do something similar to this (though it is still very similar to using a cursor) [code]
[/code] Note that you don't need the identity or the isIterated column on your temp/variable table, i just prefer to do it this way so i don't have to delete the top record from the collection as i iterate through the loop. |
|||
|
|
