In SQL Server, is there something similar to finally
clause in try..catch...
block of c# ?
I mean, I am using BEGIN TRAN, END TRAN, COMMIT TRAN, ROLLBACK TRAN
etc in a SQL Server transaction and want a section or some set of actions that needs to fire irrespective of success or failure or transaction.
Is there a solution for that? (similar to finally block on try/catch of OOPS languages).
Thanks in advance
That last one is going to raise an error every time isn't it.
If you want to trap the rollback error - you'll need to put that in a try..except block also.