I would like to execute a stored procedure within a stored procedure eg
EXEC SP1
BEGIN
EXEC SP2
END
But I only want SP1 to finish after SP2 has finished running so I need to find a way for SP1 to wait for SP2 to finish before SP1 ends.
Thanks
|
I would like to execute a stored procedure within a stored procedure eg
But I only want SP1 to finish after SP2 has finished running so I need to find a way for SP1 to wait for SP2 to finish before SP1 ends. Thanks
| |||||||
feedback
|
|
T-SQL is not asynchronous, so you really have no choice but to wait until SP2 ends. Luckily, that's what you want.
| |||
|
feedback
|
|
Here is an example of one of our stored procedures that executes multiple stored procedures within it:
| |||
|
feedback
|
|
Thats how it works stored procedures run in order, you don't need begin just something like
| ||||
feedback
|
|
Your SP2 is probably not running because of some failure in the early code in SP1 so EXEC SP2 is not reached. Please post your entire code. | |||
|
feedback
|
|
Sorry my question was not clear. SP2 is being executed as part of SP1 so I have something like:
| ||||
|
feedback
|
|
Hi I have found my problem is that SP2 doesn't execute from within SP1 when SP1 is executed. Below is the structure of SP1:
| ||||
feedback
|