The information in this article applies to:
SUMMARY
Microsoft SQL Server version 6.5 allows you to define your own performance
counters. See the "SQL Server User-Defined Countered Object" section in the
SQL Server Books Online for complete details.
MORE INFORMATION
The following is an example of a stored procedure that generates multiple
result sets:
If your procedure generates two result sets, counter 1 may appear in counter 2. You can use the "set nocount on" command to reduce the number of DONE_IN_PROC messages. You can also use trace flag 3640. The following is an excerpt from the Trace Flags section of the SQL Server Books Online. Eliminates the sending of DONE_IN_PROC messages to the client for each statement in a stored procedure. This is similar to the session setting NOCOUNT, but when set as a trace flag every client session is handled this way. Additional query words: Perfmon Performance Monitor winnt nt
Keywords : kbother kbusage SSrvGen |
Last Reviewed: April 7, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |