async_tsql
async_tsql copied to clipboard
Copy/paste error in [usp_AsyncExecInvoke]
The implementation of procedure [usp_AsyncExecInvoke] appears to have a 'copy/paste' type error. At the bottom of the proc, in the error processing section is the line:
rollback transaction usp_my_procedure_name;
I suspect this should read:
rollback transaction usp_AsyncExecInvoke;
and is the result of copying some code from a prior blog example on error processing. Of course, I could be wrong.. :)
Hi Remus, It seems the correct is: rollback transaction usp_AsyncExecInvoke;