↧
sp name in trigger
You could use the SET CONTEXT_INFO command to store the SP name in a connection wide context and then retrieve it from the trigger using a query on sysprocesses or CONTEXT_INFO() built-in in SQL Server...
View Articlesp name in trigger
Hi,you can pass the procname as a column as information to the table, then the triger can leep track of the source of change. Otherwise there is no way to get this information.HTH, Jens...
View Articlesp name in trigger
There are two different Stored Procedures insert data into a table, is it possible to catch what stored procedure name was that trigged the trigger in the trigger?
View Article