How to find out SQL Server table's read/write statistics?

后端 未结 4 1020
轻奢々
轻奢々 2020-12-24 14:42

Is there a way to find a statistics on table read and write count on SQL Server 2005/2008?

I am specifically looking for DMVs/DMFs without usin

4条回答
  •  执笔经年
    2020-12-24 15:29

    • sys.dm_db_index_physical_stats (size and fragmentation)
    • sys.dm_db_index_usage_stats (usage, number of scans/seeks/updates etc)
    • sys.dm_db_index_operational_stats (current activity on index)

    Remember 'table' means the clustered index or the 'heap'.

提交回复
热议问题