获取 SQL Server 2000 中连接的用户数
当我尝试通过企业管理器分离数据库时,它显示没有。访问数据库的用户数,并且它不允许我们在不清除数据库连接的情况下分离。
那么,我想知道是否可以通过SQL查询得到结果(连接特定数据库的用户数)?如果是,怎么办?
幸福永远 BKR 西瓦普拉卡什
While I'm trying to detach a database through Enterprise Manager, it shows the no. of users accessing the database and it didn't allow us to detach without clearing the database connection.
Well, I want to know whether the result (no. of users connecting a particular database) could be obtained through a SQL query? If yes, how ?
Happiness Always
BKR Sivaprakash
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这会给你正确的结果。在查询中添加您的数据库名称 -
这将包括来自 SQL 代理的登录名。请注意,
同一用户可以使用同一应用程序的多个连接,
因此会被多次计算。
This will give you proper results. Add your database name in the query -
This will include logins from SQL Agent. Note that the
same user can be using multiple connections from the same application,
and thus be counted more than once.
或者
也许(认为这可能是 SQL Server 2005 以上):
or
maybe (think this might be SQL Server 2005 upwards):