oracle中重建索引

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle中重建索引相关的知识,希望对你有一定的参考价值。

  
  
    数据库的索引如果有比较频繁的 Delete 操作, 将可能导致索引产生很多碎片,
所以,在有的时候,需要对所有的索引重新 REBUILD,以便合并索引块,减少碎
片,提高查询速度。
SQL> set heading off
SQL> set feedback off
SQL> spool d:index.sql
SQL> SELECT ‘alter index ‘ || index_name || ‘ rebuild ‘
||‘tablespace INDEXES storage(initial 256K next 256K pctincrease 0);‘
FROM all_indexes
WHERE ( tablespace_name != ‘INDEXES‘
OR next_extent != ( 256 * 1024 )
)
AND owner = USER
SQL>spool off


本文出自 “elanjie” 博客,请务必保留此出处http://elanjie.blog.51cto.com/11847332/1912364

以上是关于oracle中重建索引的主要内容,如果未能解决你的问题,请参考以下文章

ORACLE关于索引是否需要定期重建争论的整理

oracle中重建索引

oracle重建失效索引

oracle, 表索引占用空间非常大, 15g以上了, 重建索引后所用空间缩减为原来不到1/5, 这是啥原因?

Oracle索引状态查询&索引重建

Oracle 索引的失效和重建