Hi All,
I wanted to see what all components are stealing memory from Buffer Pool as I can clearly see the Stolen Pages count very high.
In SQL 2012, Is there a DMV through which we can tell how is stealing memory ?
The below dmv works well in sql 2008 but in SQL 2012, multi_pages_kb column is missing.
select top 10 type, multi_pages_kb
from sys.dm_os_memory_clerks
order by multi_pages_kb desc
Thanks in advance.
-Sam