In performance tuning exercises I am used to querying and using Performance counters at large. This is one source of high-level troubleshooting that we advocate to our customers for a quick effective start. Once we know where the problem is, we get into detailed analysis using other tools. Several memory counters that were present in the Buffer Pool objects – for example, Buffer Manager, Buffer Partition and Buffer Node are removed in SQL Server 2012. New counters that reflect status of memory manager components are added to the system monitor objects: Memory Manager, Memory Node. It is key to know what was added because these help us in future troubleshooting.
Counters removed in SQL Server 2012
SQLServer:Buffer Manager
- Free pages
- Total pages
- Target pages
- Reserved pages
- Stolen pages
- AWE lookup maps/sec
- AWE stolen maps/sec
- AWE write maps/sec
- AWE unmap calls/sec
- AWE unmap pages/sec
SQLServer:Buffer Partition
- Free pages
- Free list requests/sec
- Free list empty/sec
SQLServer:Buffer Node
- Free pages
- Total pages
- Foreign pages
- Stolen pages
- Target pages
The following memory related counters have been added in SQL Server 2012:
SQLServer:Memory Manager
- Database Cache Memory (KB)
- Free Memory (KB)
- Reserved Server Memory (KB)
- Stolen Server Memory (KB)
SQLServer:Memory Node
- Database Node Memory (KB)
- Free Node Memory (KB)
- Foreign Node Memory (KB)
- Stolen Memory Node (KB)
- Target Node Memory
- Total Node Memory
SQLServer:Buffer Node
- Local Node page lookups/sec
- Remote Node page lookups/sec
These were important to know because during performance tuning, I have a tendency to use perfmon templates. In a recent testing, I found that some of these counters were different and were missing in my analysis. On closer debugging is when I understood, some of these counters have been removed because of the memory changes made to SQL Server.
This entry was posted on Tuesday, January 15th, 2013 at 08:30 and is filed under Technology. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.


Thank you very much sir.