What are the helpful cases of Internals Viewer for SQL Server to convince me to use it?

末鹿安然 提交于 2019-12-24 11:47:56

问题


I am in doubt whether I should spend time for installing, studying and using "Internals Viewer for SQL Server"
What are the most helpful practical uses to convince me to use it for SQL Server perforamnce tuning, troubleshooting or database design?


回答1:


The feature list is on the link you gave.

  • Allocation Map
    • Displays the physical layout of tables and indexes
    • Displays PFS status
    • Overlay pages in the Buffer Pool
  • Page Viewer
    • Displays Data pages including forwarding records and sparse columns
    • Displays Index pages
    • Displays allocation pages (IAM, GAM, SGAM, DCM, and BCM pages)
    • Displays pages with SQL Server 2008 row and page compression

If you are interested in these areas then it beats messing around with DBCC PAGE in my opinion.

A few examples of why you might want to use it are

  • Looking at the number of rows you are getting per data page.
  • Looking at the structure of indexes.
  • Understanding what happens when rows get updated, deleted, or inserted.


来源:https://stackoverflow.com/questions/4243749/what-are-the-helpful-cases-of-internals-viewer-for-sql-server-to-convince-me-to

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!