コネクション数の最大値と接続数を取得する
mj:df >データーベース >SQL Server >コネクション数の最大値と接続数を取得する
最大コネクション数の取得
select @@MAX_CONNECTIONS as maxConnection
コネクション数の取得
select
count(*) as currentConnection
from master..sysprocesses where hostname != '';
count(*) as currentConnection
from master..sysprocesses where hostname != '';




