Oracle索引批量重置笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle索引批量重置笔记相关的知识,希望对你有一定的参考价值。
---单个索引重置语句
alter index indexname rebuild;
---查询数据索引对象语句
select * from user_indexes;
------将数据库的索引(含有$字符的索引无法被重建)批量生成索引重置语句导出,批量执行
select ‘alter index ‘||index_name||‘ rebuild;‘ as sql from user_indexes where index_name not in(select index_name from user_indexes where index_name like ‘%$%‘);
以上是关于Oracle索引批量重置笔记的主要内容,如果未能解决你的问题,请参考以下文章