qwas368
10/12/2018 - 8:25 AM

showcontig

取得資料表的訊息包含

  • 掃描頁數................................: 1
  • 掃描的範圍..............................: 1
  • 範圍切換..............................: 0
  • 每個範圍的平均頁數........................: 1.0
  • 掃描密度 [Best Count:Actual Count].......: 100.00% [1:1]
  • 範圍掃描片段 ...................: 0.00%
  • 每個頁面的平均可用位元組數.....................: 6627.0
  • 平均頁面密度 (全滿).....................: 18.12%
  • row maxsize (byte)
  • row minisize (byte)

微軟表示這個功能將被棄用,請改用 sys.dm_db_index_physical_stats

-- show as print (文字呈現)
dbcc showcontig ('YourTableNameHere')

-- show as table results (表格呈現)
dbcc showcontig ('YourTableNameHere') with tableresults