积极答复者
关于SQL server的用户数和连接数的问题!

问题
答案
-
一个连接不等于一个用户,单独一个用户可以有超过一个的连接,单独一个连接可以有超过一个用户。
你可以运行里面输入perfmon,然后加入下面两个计数器进行对比
SQLServer: General Statistics — Logical Connections:连接到系统的用户数。
SQLServer: General Statistics — User Connections:与系统建立的逻辑连接数。
更多信息请参考:http://www.sql-server-performance.com/tips/performance_monitor_general_p1.aspx- 已标记为答案 天驰 2009年10月29日 3:24
全部回复
-
Keep in mind that one connection does not equal one user. A single user can have more than one connection, and a single connection can have more than one user.
SQLServer: General Statistics — Logical Connections:Number of logical connections to the system.
SQLServer: General Statistics — User Connections:Number of users connected to the system. -
一个连接不等于一个用户,单独一个用户可以有超过一个的连接,单独一个连接可以有超过一个用户。
你可以运行里面输入perfmon,然后加入下面两个计数器进行对比
SQLServer: General Statistics — Logical Connections:连接到系统的用户数。
SQLServer: General Statistics — User Connections:与系统建立的逻辑连接数。
更多信息请参考:http://www.sql-server-performance.com/tips/performance_monitor_general_p1.aspx- 已标记为答案 天驰 2009年10月29日 3:24
-
Keep in mind that one connection does not equal one user. A single user can have more than one connection, and a single connection can have more than one user.
Yes, single user can have more than one connection but single connection can't have more than one direct sql user.
SQLServer: General Statistics — Logical Connections:Number of logical connections to the system.
SQLServer: General Statistics — User Connections:Number of users connected to the system.