1.重建索引
alter index index_name1 rebuild;
2.重建索引并转移到别的表空间
alter index index_name1 rebuild tablespace other_tablespace; --这个表空间要首先创建
3.修改索引的一些参数设置
alter index index_name rebuild pctfree 30 storage(next 100k);
4.自动为索引分配空间
alter index index_name allocate extent;
5.整合索引碎片
alter index index_name coalesce;
6.删除一个索引
drop index index_name;
7.开启对索引的监控,然后分析索引
--首先开启对索引的监控
alter index index_name monitoring usage;
--然后执行一个与索引有关的查询
--接着关闭对索引的监控
alter index index_name nomonitoring usage;
--然后查询v$object_usage视图
select index_name,start_monitoring,end_monitoring
from v$object_usage
where index_name = '........'
阅读(1966) | 评论(0) | 转发(0) |