[SQL SERVER]善用sp_whoisactive

介紹如何使用sp_whoisactive 快速找出目前 SQL Server 效能緩慢的查詢

DownLoad  sp_whoisactive (from SQL Server MVP Adam Machanic)

sp_monitor (Transact-SQL)

[SQL SERVER][TSQL]獲取各種高成本查詢語法

/*
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