performance monitor没有SQL Server性能计数器

Windows Server 2008 R2 En Enterprise 64bit
SQL Server 2008 R2 En Enterprise 64bit

症状:在performance monitor中看不到Sql Server相关的性能计数器

解决办法:

Rebuilding the counters:
cd c:\windows\system32
lodctr /R
cd c:\windows\sysWOW64
lodctr /R

Resyncing the counters with Windows Management Instrumentation (WMI):
WINMGMT.EXE /RESYNCPERF

Stop and restart the Performance Logs and Alerts service.
Stop and restart the Windows Management Instrumentation service.

This will rebuild all performance counters including extensible and third-party counters.


refer:
http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/02/21/i-see-no-sql-server-2008-counters-in-perfmon/


作者:nzperfect
出处:http://www.cnblogs.com/nzperfect/
引用或者转载本BLOG的文章请注明原作者和出处,并保留原文章中的版权信息。

原文地址:https://www.cnblogs.com/nzperfect/p/2636387.html