all groups > sql server connect > january 2007 >
You're in the

sql server connect

group:

check how many connections



check how many connections js NO[at]SPAM someone.com
1/28/2007 7:27:40 PM
sql server connect: Hi, how to check how many connections current be used?

Thanks,

Re: check how many connections Andrew J. Kelly
1/28/2007 8:46:13 PM
sp_who2 will give you a rough idea. Any unique SPID above 50 is essentially
a different connection. There is a SQL Server perfmon counter for
connections as well.

--
Andrew J. Kelly SQL MVP

[quoted text, click to view]

Re: check how many connections Hari Prasad
1/31/2007 12:16:55 AM
Hello,

For SQL 2005, use the below dynamic management views to query connections
and sessions.

sys.dm_exec_connections
sys.dm_exec_sessions

Read the below article to know the usage and details. Please rate the
article if found useful.

http://www.codeproject.com/useritems/Dynamic_Management_Views.asp

Thanks
Hari

[quoted text, click to view]

AddThis Social Bookmark Button