我尝试使用以下命令限制与服务器的活动连接数:
-- 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。