vote up 1 vote down star

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?

flag

1  
So, for example, you have a Customer table with a customerId column, and you want to call the SP once for each row in the table, passing in the corresponding customerId as a parameter? – Gary McGill Nov 1 at 10:21
Could you elaborate on why you can't use a cursor? – Andomar Nov 1 at 10:56
@Gary: Maybe I just want to pass the Customer Name, not necessarily the ID. But you are right. – Johannes Rudolph Nov 1 at 11:39
@Andomar: Purely scientific :-) – Johannes Rudolph Nov 1 at 11:40

4 Answers

vote up 3 vote down check

You could do something like this: order your table by e.g. CustomerID (using the AdventureWorks Sales.Customer sample table), and iterate over those customers using a WHILE loop:

-- define the last customer ID handled
DECLARE @LastCustomerID INT
SET @LastCustomerID = 0

-- define the customer ID to be handled now
DECLARE @CustomerIDToHandle INT

-- select the next customer to handle    
SELECT TOP 1 @CustomerIDToHandle = CustomerID
FROM Sales.Customer
WHERE CustomerID > @LastCustomerID
ORDER BY CustomerID

-- as long as we have customers......    
WHILE @CustomerIDToHandle IS NOT NULL
BEGIN
    -- call your sproc

    -- set the last customer handled to the one we just handled
    SET @LastCustomerID = @CustomerIDToHandle
    SET @CustomerIDToHandle = NULL

    -- select the next customer to handle    
    SELECT TOP 1 @CustomerIDToHandle = CustomerID
    FROM Sales.Customer
    WHERE CustomerID > @LastCustomerID
    ORDER BY CustomerID
END

That should work with any table as long as you can define some kind of an ORDER BY on some column.

Marc

link|flag
+1 Nice workaround – Andomar Nov 1 at 10:55
2  
a while loop is not much different to a cursor of course... – Mitch Wheat Nov 1 at 11:40
@Mitch: yes, true - a bit less overhead. But still - it's not really in the set-based mentality of SQL – marc_s Nov 1 at 12:12
Is a set based implementation even possible? – Johannes Rudolph Nov 1 at 13:26
I don't know of any way to achieve that, really - it's a very procedural task to begin with.... – marc_s Nov 1 at 14:34
vote up 0 vote down

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 ?

link|flag
vote up 1 vote down

For SQL Server 2005 onwards, you can do this with CROSS APPLY and a table-valued function.

link|flag
Nice idea, but a function can't call a stored procedure – Andomar Nov 1 at 10:53
vote up 0 vote down

You could slap it into a udf- but i don't think you'd want to do that in reality.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.