分析索引是否變'壞'

husthxd發表於2004-10-11
使用以下語句驗證索引

-- 使用以下語句驗證索引
-- 注意pct_used,如果小於used_space/btree_space-pct_free,考慮rebuild索引
-- An index can deteriorate over time due to sparseness, not due to "unbalancing".
analyze index validate structure
/
select btree_space, used_space, pct_used, blocks, lf_blks, br_blks from index_stats
/
ALTER INDEX COALESCE COMPUTE STATISTICS
/

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/6906/viewspace-21576/,如需轉載,請註明出處,否則將追究法律責任。

相關文章