Hello,
I have a main stored procedure SP with 3 stored procedures SP1, SP2, SP3 in it.
If one insert statement in SP2 throws an error, will SP, SP1 & SP3 execute?
Even one insert statement in one stored procedure fails, I want to execute the other statements in that stored procedure, and other stored procedures too. How can I achieve this?
Thanks