Begin Try Begin Tran DO WORK Commit TranEnd TryBegin CATCH SEND ERROREND CATCH
Begin transaction-- do some stuffBegin transaction-- do some more stuffCommit transaction
We walk in the dark places no others will enterWe stand on the bridge and no one may pass
USE [MASTER]BEGIN TRY BEGIN TRANSACTION Update DBAEmails Set Email = 'thisted@gmail.com' where ID = 2 COMMIT TRANSACTIONEND TRYBEGIN Catch print 'Failure to Update Email' RollBack TransactionEnd Catch