oracle批量重建索引方法

orclwujian發表於2016-03-30
sqlplus / as sysdba
spool c:\rebuild.sql
select 'alter index '||owner||'.'||index_name||' rebuild;' from dba_indexes where status ='INVALID';
spool off
@c:\rebuild.sql

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

相關文章