使用sp_configure“用户连接”,活动连接超出最大设置

时间:2017-08-29 10:51:48

标签: sql-server

我尝试使用以下命令限制与服务器的活动连接数:

-- Limit the max number of active connections to 100
EXEC sp_configure 'user connections', 20;
RECONFIGURE;

但是,重新启动服务器后,当我检查连接数时:

-- View total number of active connections
SELECT 
    COUNT(dbid) as TotalConnections
FROM
    sys.sysprocesses
WHERE 
    dbid > 0

我得到的连接超出了我刚设置的限制,例如在这种情况下为25。

0 个答案:

没有答案