﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2005 / SQL Server Newbies  / How To Determine The Number of Open Connections In Sql Server 2000 / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Thu, 23 May 2013 08:39:42 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: How To Determine The Number of Open Connections In Sql Server 2000</title><link>http://www.sqlservercentral.com/Forums/Topic1363699-1291-1.aspx</link><description>SELECT     COUNT(dbid) as TotalConnectionsFROM    sys.sysprocessesWHERE     dbid &amp;gt; 0If more information is requiredusesp_who2 'ACTIVE'</description><pubDate>Tue, 04 Dec 2012 23:51:24 GMT</pubDate><dc:creator>jeetsingh.cs</dc:creator></item><item><title>RE: How To Determine The Number of Open Connections In Sql Server 2000</title><link>http://www.sqlservercentral.com/Forums/Topic1363699-1291-1.aspx</link><description>The query will work simply by removing the "sys." from sysprocesses.  master..sysprocesses exists in SQL 2000.</description><pubDate>Mon, 24 Sep 2012 13:32:17 GMT</pubDate><dc:creator>Richard Moore-400646</dc:creator></item><item><title>How To Determine The Number of Open Connections In Sql Server 2000</title><link>http://www.sqlservercentral.com/Forums/Topic1363699-1291-1.aspx</link><description>Good Afternoon Guys,would it be possible to know the number of connections a person has in a Database in Sql Server 2000? i saw a query that actually counts the number of connection but only runs in SQL Server 2005. here is the query.SELECT   DB_NAME(dbid) as DBName,		 COUNT(dbid) as NumberOfConnections,		 loginame as LoginName 		 FROM     sys.sysprocesses WHERE      dbid &amp;gt; 0 GROUP BY      dbid, loginame is there anything similar in SQL server 2000 that does the same thing that the query stated above does?ThanksNoel</description><pubDate>Mon, 24 Sep 2012 13:22:11 GMT</pubDate><dc:creator>Stylez</dc:creator></item></channel></rss>