async_tsql icon indicating copy to clipboard operation
async_tsql copied to clipboard

Copy/paste error in [usp_AsyncExecInvoke]

Open stope19 opened this issue 8 years ago • 1 comments

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.. :)

stope19 avatar May 18 '16 23:05 stope19

Hi Remus, It seems the correct is: rollback transaction usp_AsyncExecInvoke;

win32nipuh avatar Jul 17 '20 07:07 win32nipuh