SQL Server Performance Counter are Missing
Published Mar 22 2021 07:53 PM 16.2K Views
Microsoft

If you find the SQL Server related performance counter objects are missing, you can try below steps to get it back

 

For example, my instance name is STD2016, and now open the command window with Administrator

 

1. Unload the counters. 

  a. Open Command Prompt

  b. Change directory (cd) to the \Binn folder of your instance, by default, the folder path should be

  C:\Program Files\Microsoft SQL Server\MSSQLXX.INSTANCENAME\MSSQL\Binn

  c. And then run unlodctr command, if you are using the default instance, just use:

 

unlodctr MSSQLSERVER

 

For me,  it is unlodctr MSSQL$STD2016, the format is MSSQL$INSTANCENAME

YueJ_7_0-1616467375739.png

 

2. Load the perfmon counters. 

  a. Under the \Binn folder you will see a file that begins with "perf-MSSQL$", the name format is perf-MSSQL$INSTANCENAMEsqlctr.ini.

  b. Run the following command to load the counters for a default SQL instance:

 

lodctr perf-MSSQLSERVERsqlctr.ini

 

In my case I was using a named instance:

 

lodctr perf-MSSQL$STD2016sqlctr.ini

 

YueJ_7_1-1616467605075.png

3. Restart the remote registry key service

 

NET STOP "Remote Registry" & NET START "Remote Registry"

 

YueJ_7_2-1616467694450.png

4. Close Performance Monitor and open it again, you will be able to see the counters:

 

YueJ_7_3-1616467735719.png

 

2 Comments
Co-Authors
Version history
Last update:
‎Apr 15 2021 09:50 AM
Updated by: