如何从存储过程中识别存储过程的调用者

发布于 2024-09-18 06:23:06 字数 150 浏览 9 评论 0原文

我有一个已弃用的存储过程,不应再从代码中调用它,但有一些系统仍在调用它。这是一个生产服务器,因此我对它进行诊断的间接访问非常有限。

有没有办法确定从存储过程中调用特定存储过程的机器?例如 @@CallingMachineIP 或 @@CallingMachineName

I have a deprecated stored procedure which should no longer be called from code, but there is some system which is still calling it. This is a production server so I have very limited indirect access to it for performing diagnostics.

Is there any way to determine the machine which is calling a particular stored procedure from within the sproc? Something such as @@CallingMachineIP or @@CallingMachineName

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

败给现实 2024-09-25 06:23:06
select hostname from master..sysprocesses where spid=@@SPID

或者

select host_name from sys.dm_exec_sessions where session_id=@@SPID
select hostname from master..sysprocesses where spid=@@SPID

or

select host_name from sys.dm_exec_sessions where session_id=@@SPID
烟─花易冷 2024-09-25 06:23:06

@@SPID 应该为您提供当前进程 ID。

然后,

select * from master.dbo.sysprocesses 其中
spid = @@SPID

您可以从这些列之一获取您需要的内容。

@@SPID should give you the current process ID.

Then,

select * from master.dbo.sysprocesses where
spid = @@SPID

You can get what you need from one of those columns.

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