当我在 SQL Server 2016 中运行带有 TABLERESULTS、ALL_INDEXES、NO_INFOMSGS 的 DBCC SHOWCONTIG ('schema_name.table_name') 时,它会针对某些表返回 2 行
下面的例子:
ObjectName ObjectId IndexName IndexId Level Pages Rows MinimumRecordSize MaximumRecordSize AverageRecordSize ForwardedRecords Extents ExtentSwitches AverageFreeBytes AveragePageDensity ScanDensity BestCount ActualCount LogicalFragmentation ExtentFragmentation
table1_ 1891549497 col_st_idx 1 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0
table_ 1891549497 col_st_idx 1 0 1 10 553 641 593.6 0 1 0 2140 73.5606622189276 100 1 1 0 0
我无法理解这种行为的原因,因为理想情况下它应该只返回 1 行,有人可以提供什么吗?