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
END CATCH
to do what you need. – Underprop