日期:2014-05-18 浏览次数:20471 次
sp_configure 'user connections','100' go reconfigure go
------解决方案--------------------
连接数其实就是会话的并发数,而非用户数,1个用户可能同时占用多个连接数
------解决方案--------------------
界面设置的方法,
------解决方案--------------------
补充一下:
EXEC sys.sp_configure N'show advanced options', N'1' RECONFIGURE WITH OVERRIDE GO EXEC sys.sp_configure N'user connections', N'100' GO RECONFIGURE WITH OVERRIDE GO EXEC sys.sp_configure N'show advanced options', N'0' RECONFIGURE WITH OVERRIDE GO