How to identify the caller of a Stored Procedure from within the Sproc

后端 未结 2 2123
广开言路
广开言路 2021-02-14 01:19

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

2条回答
  •  悲&欢浪女
    2021-02-14 01:56

    select hostname from master..sysprocesses where spid=@@SPID
    

    or

    select host_name from sys.dm_exec_sessions where session_id=@@SPID
    

提交回复
热议问题