SCRIPT: How to find blocking sessions fast with sp_whoisactive?

 EXEC dbo.sp_whoisactive
    --@help = 1
    @find_block_leaders = 1
    ,@sort_order = '[blocked_session_count] DESC'
    ,@get_plans = 1

Comments