Finding the total virtual, shared and AWE memory used
-
Posted on May 31, 2009 by Derek Dieter
-
0
This query shows:
- Amount of memory allocated to the buffer pool
- Amount of memory consumed by BPool
- Amount of memory used by AWE
[cc lang=”sql”]
SELECT
SUM(single_pages_kb
+ virtual_memory_committed_kb
+ shared_memory_committed_kb
+ awe_allocated_kb) as [Used by BPool with AWE, Kb]
FROM
sys.dm_os_memory_clerks
WHERE
type = ‘MEMORYCLERK_SQLBUFFERPOOL’
[/cc]
Post a comment
- Comments (RSS)
- Trackback
- Permalink