码迷,mamicode.com
首页 > 其他好文 > 详细

重建失效索引

时间:2015-04-22 11:47:35      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:数据库   失效索引   

        若数据库中出现失效索引,使得失效索引所在表相关操作在访问上本因走索引却出现大量的全表扫描,这是极其消耗资源的,因此必须对这些失效索引进行在线重建。重建失效索引具体步骤如下:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!