命令:html
DBCC OPENTRANsql
輸出:數據庫
(1 row(s) affected)
數據庫 'Testdb' 的事務信息。
最先的活動事務:
SPID (服務器進程 ID): 54
UID (用戶 ID): -1
名稱 : user_transaction
LSN : (295:6687:1)
開始時間 : 12 24 2010 2:50:15:607PM
SID : 0x0105000000000005150000007fe010d31cba1ab1566ac5dff4010000
DBCC 執行完畢。若是 DBCC 輸出了錯誤信息,請與系統管理員聯繫。 服務器
結果顯示了最先活動日誌的相關信息,包括服務器進程ID、用戶ID、和事務的開始時間。關鍵是SPID和Start Time。
擁有這些信息後,可使用動態管理視圖(DMV)來檢驗正在執行的T-SQL,以及在必要時關閉這個過程
DBCC OPENTRAN對於孤立鏈接(在數據庫中是打開的,但與應用程序或客戶端已經斷開的鏈接)是很是有用的,並能幫助咱們找出遺漏了COMMIT或ROLLBACK的事務。該命令也返回在指定數據庫內存在最先的活動事務和最先的分佈式和非分佈式複製事務。若是沒有活動事務,則顯示信息性消息,而不返回會話級數據。 session
查找正在使用的事務app
select session_id,transaction_id,is_user_transaction,is_local
from sys.dm_tran_session_transactions
where is_user_transaction=1分佈式
執行結果:
/*返回結果
session_id transaction_id is_user_transaction is_local
54 489743 1 1
*/
返回會話ID, transacation_idspa
2. 獲取該事務最後執行的語句日誌
經過sys.dm_exec_connections和sys.dm_exec_sql_text來挖掘最近執行的查詢的詳細信息。 htm
select s.text from sys.dm_exec_connections c
cross apply sys.dm_exec_sql_text(c.most_recent_sql_Handle) s
where session_id=54
也可使用sys.dm_exec_requests。
由於也從sys.dm_tran_session_transactions的第一個查詢中得知事務ID,因此可使用sys.dm_tran_active_transactions來了解更多事務自己的內容
select transaction_begin_time,
case transaction_type
when 1 then 'Read/Write transaction'
when 2 then 'Read-Only transaction'
when 3 then 'System transaction'
when 4 then 'Distributed transaction'
end tran_Type,
case transaction_state
when 0 then 'not been comoletely initaialiaed yet'
when 1 then 'initaialiaed but ha notstarted'
when 2 then 'active'
when 3 then 'ended (read-only transaction)'
when 4 then 'commit initiated for distributed transaction'
when 5 then 'transaction prepared and waiting resolution'
when 6 then 'commited'
when 7 then 'being rolled back'
when 0 then 'been rolled back'
end transaction_state
from
sys.dm_tran_active_transactions
where transaction_ID=455520
/*結果:
transaction_begin_time tran_Type transaction_state
2010-12-24 14:05:29.170 Read/Write transaction active
*/
小結:這裏演示了使用DMV 排除故障和調查長時間的活動事務的通常技巧。基本步驟以下:
一、查詢sys.dm_tran_session_transactions獲取會話ID和事務ID之間的映射。
二、查詢sys.dm_exec_connections和sys.dm_exec_sql_text查找會話最新執行的命令(most_recent_sql_Handle列)
三、最後,查詢sys.dm_tran_active_transactions肯定事務被打開了多少時間、事務的類型和事務的狀態。
使用這個技巧能夠回到應用程序去查明調用的被拋棄的事務(打開但從未提交)以及那些運行時間太長或對於應用程序來講是沒必要要的不恰當事務。
引用: http://www.cnblogs.com/qanholas/archive/2011/12/29/2306411.html