获取SQL 2000中当前的连接协议
我目前正在使用 SQL 2000(它是供应商服务器 - 不要问...),我想知道是否有一种方法可以检测已连接客户端的连接协议。对于 SQL 2005+,我使用:
select net_transport from sys.dm_exec_connections
where session_id = @@spid
但 SQL2000 缺少这种动态视图。有人知道 SQL2000 上的等效函数吗?
I'm currently using SQL 2000 (it's a vendor server - don't ask...), and I'm wondering if there's a way to detect the connection protocol of connected clients. For SQL 2005+, I use:
select net_transport from sys.dm_exec_connections
where session_id = @@spid
But SQL2000 lacks this dynamic view. Anybody know the equivalent function on SQL2000?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还可以在 SQL Server 2005/2008 中使用 sys.sysprocesses。它可能已被弃用,但在 SQL 2000 之后没有等效的功能,说 MS Connect 144515
You can also sys.sysprocesses in SQL Server 2005/2008. It may be deprecated but there is no equivalent in after SQL 2000 for functionality, says MS Connect 144515