Viewing 2 posts - 1 through 2 (of 2 total)
Here is the query you are looking for
SELECT DB_NAME(dbid) as 'Database Name',
COUNT(dbid) as 'Total Connections'
FROM master.dbo.sysprocesses WITH (nolock)
WHERE dbid > 0
GROUP BY dbid
April 14, 2009 at 10:19 am
#977396
Hello Here is my setup I am using IBM Netapp and SQL Server 2005
I have two servers my primary is connected to the san and acts as a principle...
April 10, 2009 at 3:27 pm
#975978