檢查是否存在truncate或者rebuild的索引

楊奇龍發表於2010-07-10
檢查是否存在truncate或者rebuild的索引
select owner||'.'||Object_name||'.'||subobject_name   
from dba_objects   
where object_id<>data_object_id     
     and object_type like 'INDEX%' 
     order by owner,object_name,subobject_name;
如果存在這些索引,刪除索引並且重新建立這些索引。

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

相關文章