web-dev-qa-db-ja.com

SQL Server 2008のメモリに何がキャッシュされているかを確認するにはどうすればよいですか?

SQL Server 2008 R2に何がキャッシュされているかを確認する方法はありますか?私は次の素敵な記事を見つけました: http://blog.sqlauthority.com/2010/06/17/sql-server-data-pages-in-buffer-pool-data-stored-in-memory-キャッシュ 。ただし、各テーブルとインデックスに格納されているデータの量(パーセンテージやKBなど)を知りたいのですが。そのようなデータを取得する簡単な方法はありますか?

13
Ondrej Peterka

以下のクエリを使用して、バッファプール(データキャッシュ)に格納されているものを見つけることができます。

From here

select
       count(*)as cached_pages_count,
       obj.name as objectname,
       ind.name as indexname,
       obj.index_id as indexid
from sys.dm_os_buffer_descriptors as bd
    inner join
    (
        select       object_id as objectid,
                           object_name(object_id) as name,
                           index_id,allocation_unit_id
        from sys.allocation_units as au
            inner join sys.partitions as p
                on au.container_id = p.hobt_id
                    and (au.type = 1 or au.type = 3)
        union all
        select       object_id as objectid,
                           object_name(object_id) as name,
                           index_id,allocation_unit_id
        from sys.allocation_units as au
            inner join sys.partitions as p
                on au.container_id = p.partition_id
                    and au.type = 2
    ) as obj
        on bd.allocation_unit_id = obj.allocation_unit_id
left outer join sys.indexes ind 
  on  obj.objectid = ind.object_id
 and  obj.index_id = ind.index_id
where bd.database_id = db_id()
  and bd.page_type in ('data_page', 'index_page')
group by obj.name, ind.name, obj.index_id
order by cached_pages_count desc

優れたリファレンス: ストレージエンジンの内部:バッファープールには何がありますか? Paul Randal著。

16
Kin Shah

動的管理ビューを使用して、現在キャッシュされているページを一覧表示し、それらをdatabase_idでフィルタリングできます。

   select top 100 * from sys.dm_os_buffer_descriptors

次に、DBCC PAGEコマンドを使用して、オブジェクトのページを一覧表示します。良いリファレンス: http://www.mssqltips.com/sqlservertip/1578/using-dbcc-page-to-examine-sql-server-table-and-index-data/

ただし、結果を組み合わせるのはあなた次第であり、簡単な作業ではないようです。これを行うための効果的な方法が思いついたら、お知らせください。

5
Adam Luniewski

次のSQLクエリを試してください:

select count(*)*8/1024 AS 'Cached Size (MB)'        
,case database_id                
when 32767 then 'ResourceDB'                
else db_name(database_id)                
end as 'Database'
from sys.dm_os_buffer_descriptors
where page_type in
(
'INDEX_PAGE'
,'DATA_PAGE'
)
group by db_name(database_id), database_id
order by 'Cached Size (MB)' desc
0
Tanmay Nehete