Mega Code Archive

 
Categories / MSSQL Tutorial / System Settings
 

XACT_ABORT and transactions

4> SET XACT_ABORT ON 5> BEGIN TRANSACTION 6> GO 1> SELECT 1/0 AS DivideByZero 2> GO Msg 8134, Level 16, State 1, Server J\SQLEXPRESS, Line 1 Divide by zero error encountered. 1> SELECT @@TRANCOUNT AS ActiveTransactionCount 2> GO ActiveTransactionCount ----------------------                      0 (1 rows affected) 1> 2> 3>