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?
|
if you are careful and use TRY-CATCH around everything, and rollback on errors do you really need to use:
In other words, is there any error that TRY-CATCH will miss that SET XACT_ABORT ON will handle? |
||||
|
|
|
Remember that there are errors that TRY-CATCH will not capture with or without However, What it also does is remove locks etc if the client command timeout kicks in and the client sends the "abort" directive. Without |
|||||||||||||||
|
|
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. |
|||
|
|
|
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. |
|||||
|
|
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 |
||||
|
|
|
When XACT_ABORT set to OFF in trigger and I call RAISEERROR in trigger body, changes not rolled back. |
|||
|
|