use below script to get active SQL connections
select
db_name(dbid) as [Database Name],
count(dbid) as [No Of Connections],
loginame as [Login Name]
from
sys.sysprocesses
where
dbid > 0
group by
dbid, loginame
select
db_name(dbid) as [Database Name],
count(dbid) as [No Of Connections],
loginame as [Login Name]
from
sys.sysprocesses
where
dbid > 0
group by
dbid, loginame
No comments:
Post a Comment