anyone know what is the command to check un-commited transaction?
|
1
|
|
|
|
|
|
use @@trancount or sys.dm_tran_active_transactions DMV in sql 2005, 2008 |
||
|
|
|
|
sp_who2 sp_lock |
||
|
|
|
|
XACT_STATE() reports the transaction state of a session, indicating whether or not the session has an active transaction, and whether or not the transaction is capable of being committed. It returns three values:
@@TRANCOUNT Returns the number of active transactions for the current connection.
|
||
|
|
|
|
@@trancount is the main one i use... followed with ROLLBACK TRAN if its needed! ;) |
||
|
|
|
|
run
|
||
|
|
