快速定位MS Sql Server 資料庫死結進程

來源:互聯網
上載者:User

標籤:io   os   sp   資料   on   cti   代碼   bs   as   

最近在做一個大型項目,由於資料設計採用離散型資料庫設計,以方便需求變更及使用者自訂流程要素,因為要素使用者自訂,資料完整性靠代碼約束變得不太現實,只能依靠表間關係來約束,結果因此導致資料的操作經常產生X(排它)鎖,嚴重影響資料效能。

對於一時沒有更好解決方案的資料庫死結最直接的解決辦法是殺死產生死結的資料庫進程。

如果有死結產生,下面的代碼運行後可以看到大量死結資訊在同一進程(SPID)上,可以根據情況殺死(Kill)某進程。

 

select p.spid
,p.[dbid]
,db_name(p.[dbid]) [db_name]
,l.rsc_objid As [ObjId]
,object_name(l.rsc_objid) [object_name]
,l.rsc_indid As IndId
,v.name As [Type]
,u.name As Mode
,x.name As [Status]
,l.req_transactionID [Transaction]
,p.cmd
,p.hostname
,p.program_name
,p.last_batch
,p.open_tran
,l.rsc_text as [Resource]
--,p.*
from master.dbo.syslockinfo(NOLOCK) l
inner join master.sys.sysprocesses(NOLOCK) p
on l.req_spid = p.spid
inner join master.dbo.spt_values(NOLOCK) v
ON l.rsc_type = v.number
inner join master.dbo.spt_values(NOLOCK) x
on l.req_status = x.number
inner join master.dbo.spt_values(NOLOCK) u
ON l.req_mode + 1 = u.number
where
v.type = ‘LR‘
and x.type = ‘LS‘
and u.type = ‘L‘
order by p.spid

-- kill 91

快速定位MS Sql Server 資料庫死結進程

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.