SQL Server, Memory Manager object

Applies to: SQL Server

The Memory Manager object in Microsoft SQL Server provides counters to monitor overall server memory usage. Monitoring overall server memory usage to gauge user activity and resource usage can help you to identify performance bottlenecks. Monitoring the memory used by an instance of SQL Server can help determine:

  • If bottlenecks exist from inadequate physical memory for storing frequently accessed data in cache. If memory is inadequate, SQL Server must retrieve the data from disk.

  • If query performance can be improved by adding more memory or by making more memory available to the data cache or SQL Server internal structures.

Memory Manager counters

This table describes the SQL Server Memory Manager counters.

SQL Server Memory Manager counters Description
Connection Memory (KB) Specifies the total amount of dynamic memory the server is using for maintaining connections.
Database Cache Memory (KB) Specifies the amount of memory the server is currently using for the database pages cache.
External benefit of memory An internal estimation of the performance benefit from adding memory to a specific cache. It is used by the engine to balance memory usage between cache and is useful to support when troubleshooting cases with unexpected cache growth. The value is presented as an integer based on an internal calculation.
Free Memory (KB) Specifies the amount of committed memory currently not used by the server.
Granted Workspace Memory (KB) Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations.
Lock Blocks Specifies the current number of lock blocks in use on the server (refreshed periodically). A lock block represents an individual locked resource, such as a table, page, or row.
Lock Blocks Allocated Specifies the current number of allocated lock blocks. At server startup, the number of allocated lock blocks plus the number of allocated lock owner blocks depends on the SQL Server Locks configuration option. If more lock blocks are needed, the value increases.
Lock Memory (KB) Specifies the total amount of dynamic memory the server is using for locks.
Lock Owner Blocks Specifies the number of lock owner blocks currently in use on the server (refreshed periodically). A lock owner block represents the ownership of a lock on an object by an individual thread. Therefore, if three threads each have a shared (S) lock on a page, there will be three lock owner blocks.
Lock Owner Blocks Allocated Specifies the current number of allocated lock owner blocks. At server startup, the number of allocated lock owner blocks and the number of allocated lock blocks depend on the SQL Server Locks configuration option. If more lock owner blocks are needed, the value increases dynamically.
Log Pool Memory (KB) Total amount of dynamic memory the server is using for Log Pool.
Maximum Workspace Memory (KB) Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations.
Memory Grants Outstanding Specifies the total number of processes that have successfully acquired a workspace memory grant.
Memory Grants Pending Specifies the total number of processes waiting for a workspace memory grant.
Optimizer Memory (KB) Specifies the total amount of dynamic memory the server is using for query optimization.
Reserved Server Memory (KB) Indicates the amount of memory the server has reserved for future usage. This counter shows the current unused amount of memory initially granted that is shown in Granted Workspace Memory (KB).
SQL Cache Memory (KB) Specifies the total amount of dynamic memory the server is using for the dynamic SQL cache.
Stolen Server Memory (KB) Specifies the amount of memory the server is using for purposes other than database pages.
Target Server Memory (KB) Indicates the ideal amount of memory the server can consume.
Total Server Memory (KB) Specifies the amount of memory the server has committed using the memory manager.

Example

You begin to explore the query performance counters in this object using this T-SQL query on the sys.dm_os_performance_counters dynamic management view:

SELECT * FROM sys.dm_os_performance_counters
WHERE object_name LIKE '%Memory Manager%';