如何确定 ms sql server 2005 中打开/活动连接的总数

我的 PHP/MS Sql Server 2005/win 2003 应用程序偶尔会变得非常无响应,内存/cpu 使用率不会飙升.如果我尝试从 sql management studio 打开任何新连接,那么它只会挂在打开的连接对话框中.如何确定活动连接总数ms sql server 2005

My PHP/MS Sql Server 2005/win 2003 Application occasionally becomes very unresponsive, the memory/cpu usage does not spike. If i try to open any new connection from sql management studio, then the it just hangs at the open connection dialog box. how to deterime the total number of active connections ms sql server 2005

推荐答案

这显示了每个 DB 的连接数:

This shows the number of connections per each DB:

SELECT 
    DB_NAME(dbid) as DBName, 
    COUNT(dbid) as NumberOfConnections,
    loginame as LoginName
FROM
    sys.sysprocesses
WHERE 
    dbid > 0
GROUP BY 
    dbid, loginame

这给出了总数:

SELECT 
    COUNT(dbid) as TotalConnections
FROM
    sys.sysprocesses
WHERE 
    dbid > 0

如果您需要更多详细信息,请运行:

If you need more detail, run:

sp_who2 'Active'

注意:使用的 SQL Server 帐户需要 'sysadmin' 角色(否则它只会显示单行和 1 作为结果)

Note: The SQL Server account used needs the 'sysadmin' role (otherwise it will just show a single row and a count of 1 as the result)

相关文章