首页 > 数据库技术 > 详细

Oracle 工具类 Sql 分析索引的 碎片率

时间:2018-01-08 14:08:18      阅读:262      评论:0      收藏:0      [点我收藏+]

 

1、索引分析

分析语句:
SQL>analyze index <index_name> validate structure online;

分析表:
analyze table tablename compute statistics;

analyze index indexname compute statistics;

 

查看索引碎片的情况:
SQL>select name,del_lf_rows_len,lf_rows_len,(del_lf_rows_len/lf_rows_len)*100 from index_stats;
索引碎片率:(del_lf_rows_len/lf_rows_len)*100
如果索引碎片率超过20%,oracle就会认为索引碎片已经非常严重,此时就需要对索引碎片进行整理。

 

 

2、索引碎片整理
索引碎片整理包括两种策略:
(1)重建索引(rebuild)
SQL>alter index <index_name> rebuild;
(2)压缩索引(coalesce)
SQL>alter index <index_name> coalesce;

 

oracle建议定期分析之后采用重建索引(rebuild)的策略。

 

Oracle 工具类 Sql 分析索引的 碎片率

原文:https://www.cnblogs.com/liwenchaoCode/p/8242274.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!