Capturing query results using SQL Server Profiler

Can I get the result of a query using SQL Server Profiler?

i.e. query generated result

+5
source share
2 answers

Unable to retrieve query results using SQL Profiler. You can view almost everything else, including - including the actual query, parameters and their values, query statistics, etc.

+5
source

You need to create a new sql trace, and in the event tab of the new trace de-select everything and select only sqlstmntstarting, sqlstmntcompleted.

, spstarting, spcompleted

-1

All Articles