oracle中监控索引是否可用
在oracle中,可以使用如下的方法监控索引是否可用:
alter index 索引名 monitoring usage;
select * from xxx where 索引列=xxxxxx(比如这里用到了索引)
select * from v$object_usage;
停止监控:
alter index 索引名 nomonitoring usage;
发布时间: 2013-11-18 00:11:49 作者: rapoo
oracle中监控索引是否可用
在oracle中,可以使用如下的方法监控索引是否可用:
alter index 索引名 monitoring usage;
select * from xxx where 索引列=xxxxxx(比如这里用到了索引)
select * from v$object_usage;
停止监控:
alter index 索引名 nomonitoring usage;