Are they rolled back immediately? Are they rolled back after some period of time? Are they left in an uncommitted state?
Is the behavior the same if connection pooling is used and the connections are simply reset?
|
Are they rolled back immediately? Are they rolled back after some period of time? Are they left in an uncommitted state? Is the behavior the same if connection pooling is used and the connections are simply reset? |
||||
|
|
It can stay open while connection pooling applies. Example: command timeout can leave locks and TXN because the client sends as "abort". 2 solutions:
I always use From this SQL Team blog:
From MSDN, section "Transaction Support" (my bold)
|
|||||
|
|
Uncommitted changes are not visible outside of the connection, so the time of the rollback is irrelevant. So yes, the transaction is eventually rolled back. |
|||||||||||
|
|
The server will rollback immedeatly any uncommited transaction when a session is closed. Transactions can be started by the client using the ADO API (SqlConnection.BeginTransaction) or by executing an BEGIN TRANSACTION statement. The TDS protocol between client and server has special tokens informing the client when a transaction was started/commited like this so ADO knows that the connection has pending transactions even if they are started in T-SQL code. |
|||
|
|