介紹如何使用sp_whoisactive 快速找出目前 SQL Server 效能緩慢的查詢
DownLoad sp_whoisactive (from SQL Server MVP Adam Machanic)
/*
RiCo技術農場
善用 sp_whoisactive 快速找出目前 SQL Server 效能緩慢的查詢
*/
--from SQL Server MVP Adam Machanic
sp_whoisactive @get_plans =1,@get_transaction_info=1,@get_locks=1
sp_who2
go
dbcc inputbuffer(56)
go