查詢目前各個資料庫的連線數量

查詢目前各個資料庫的連線數量

這段程式碼可以查詢目前各個資料庫有多少使用者在連線。

from master..sysprocesses
where spid > 50 
group by  db_name(dbid)
order by count(*) desc

spid 50 以下是系統在用的,50以上才是我們用的,所以要加個 where 條件篩選出來。