获取SQL 2000中当前的连接协议

发布于 2024-08-02 12:49:44 字数 239 浏览 3 评论 0原文

我目前正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似梦非梦 2024-08-09 12:49:44
SELECT net_library FROM sysprocesses WHERE spid = @@SPID

您还可以在 SQL Server 2005/2008 中使用 sys.sysprocesses。它可能已被弃用,但在 SQL 2000 之后没有等效的功能,说 MS Connect 144515

SELECT net_library FROM sysprocesses WHERE spid = @@SPID

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文