Stored procedure output parameters in SQL Server Profiler

后端 未结 2 1441
醉话见心
醉话见心 2020-12-19 01:42

I\'ve got a stored procedure with an int output parameter. If I run SQL Server Profiler, execute the stored procedure via some .Net code, and capture the RPC:Co

2条回答
  •  执念已碎
    2020-12-19 02:32

    The RPC:Completed event class indicates that a remote procedure call has been completed. So the output parameter is actually known at that point. See if tracing the RPC:Started shows you what you expect.

提交回复
热议问题