How to determine total number of open/active connections in ms sql server 2005(如何确定 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)
这篇关于如何确定 ms sql server 2005 中打开/活动连接的总数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何确定 ms sql server 2005 中打开/活动连接的总数
				
        
 
            
        基础教程推荐
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
 - MySQL 5.7参照时间戳生成日期列 2022-01-01
 - 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
 - MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
 - 从字符串 TSQL 中获取数字 2021-01-01
 - 带有WHERE子句的LAG()函数 2022-01-01
 - ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
 - 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
 - 带更新的 sqlite CTE 2022-01-01
 - CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
 
    	
    	
    	
    	
    	
    	
    	
    	
						
						
						
						
						
				
				
				
				