若数据库中出现失效索引,使得失效索引所在表相关操作在访问上本因走索引却出现大量的全表扫描,这是极其消耗资源的,因此必须对这些失效索引进行在线重建。重建失效索引具体步骤如下:
1. 查询数据库中有无失效索引
select owner,table_name,index_name,status,last_analyzed from dba_indexes where status='UNSABLE';2. 如果有失效的索引,要对索引进行在线重建
alter index mw_app.ind_t_id rebuild online;3. 查询索引是否重建好
批注:若查询出索引状态为‘VALID’,说明索引已经重建好。
select owner,table_name,index_name,status,last_analyzed from dba_indexes where index_name='IND_T_ID';4. 再次查询数据库中有无失效索引
批注:查询没有记录,说明数据库里没有失效索引,至此失效索引已全部被重建。
select owner,table_name,index_name,status,last_analyzed from dba_indexes where status='UNSABLE';
原文地址:http://blog.csdn.net/johnnysun2015/article/details/45190635