Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

if you are careful and use TRY-CATCH around everything, and rollback on errors do you really need to use:

SET XACT_ABORT ON

In other words, is there any error that TRY-CATCH will miss that SET XACT_ABORT ON will handle?

share|improve this question

5 Answers

up vote 17 down vote accepted

Remember that there are errors that TRY-CATCH will not capture with or without XACT_ABORT.

However, SET XACT_ABORT ON does not affect trapping of errors. It does guarantee that any transaction is rolled back /doomed though. When "OFF", then you still have the choice of commit or rollback (subject to xact_state). This is the main change of behaviour for SQL 2005 for XACT_ABORT

What it also does is remove locks etc if the client command timeout kicks in and the client sends the "abort" directive. Without SET XACT_ABORT, locks can remain if the connection remains open. My colleague (an MVP) and I tested this thoroughly at the start of the year.

share|improve this answer
so there is a benefit to using this if there is a timeout. what happens to locks if you have an error and are not using XACT_ABORT ON? – KM. May 28 '09 at 12:38
They remain until the connection is closed, when it's all rolled back. When you close a connection in the client, connection pooling may kepp it alive longer than you think.. so it stays open and no rollback happens. XACT_ABORT ON forces a rollback. And with SQL 2005 it has no adverse effects. – gbn May 28 '09 at 13:15
if I intend to rollback on any error, would it be wise to just use XACT_ABORT ON in addition to all the normal try-catch? – KM. May 28 '09 at 13:39
1  
Also see this related question. – Fernando Correia Jul 7 '12 at 16:06
1  
One exception to the "rollback guaranteed" rule: if you use RAISERROR with XACT_ABORT, SQL will not roll back the transaction. You must ROLLBACK explicitly in this scenario. See sommarskog.se/error-handling-I.html#XACT_ABORT – Daniel Nolan Aug 2 '12 at 15:10
show 3 more comments

I believe SET XACT_ABORT ON was a requirement when executing distributed transactions.

From the books on line: XACT_ABORT must be set ON for data modification statements in an implicit or explicit transaction against most OLE DB providers, including SQL Server. The only case where this option is not required is if the provider supports nested transactions. For more information, see Distributed Queries and Distributed Transactions.

share|improve this answer

XACT_ABORT does indeed affect error handling: it will abort the entire batch when an error is encountered, and any code following the line that produced the error (including error checking!) will NEVER execute. There are two exceptions to this behavior: XACT_ABORT is superseded by TRY...CATCH (the CATCH block will always execute, and transactions will NOT be rolled back automatically, only rendered uncommitable), and XACT_ABORT will ignore RAISERROR.

share|improve this answer
1  
Not completely correct: not all transactions will be doomed, some will still remain committable. Also CATCH block does not catch all errors. – AlexKuznetsov Sep 29 '09 at 13:25

My understanding is that even if a try catch is used and no rollback statement is used in a catch block, any un-commitable transaction will be rolled back when XACT_ABORT is ON.

share|improve this answer

When XACT_ABORT set to OFF in trigger and I call RAISEERROR in trigger body, changes not rolled back.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.