You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example:
RAISERROR ('==== Top 10 Blocking Resources ====', 0, 1) WITH NOWAIT;
...is a header of one of the SELECTs or SPs that run and output data direct into the SQLNexus app log. Some of these are complex CTE's with recursion that could actually make SQL Nexus longer to run...basically we are running queries and getting results sets that are almost certainly never looked at.
Some of these queries are probably pretty helpful. Consider adding these SELECTs and SP's to a report if they are not already being used. They just shouldn't be running as part of PerfStatsAnalysis.sql
The text was updated successfully, but these errors were encountered:
Example:
RAISERROR ('==== Top 10 Blocking Resources ====', 0, 1) WITH NOWAIT;
...is a header of one of the SELECTs or SPs that run and output data direct into the SQLNexus app log. Some of these are complex CTE's with recursion that could actually make SQL Nexus longer to run...basically we are running queries and getting results sets that are almost certainly never looked at.
Some of these queries are probably pretty helpful. Consider adding these SELECTs and SP's to a report if they are not already being used. They just shouldn't be running as part of PerfStatsAnalysis.sql
The text was updated successfully, but these errors were encountered: