- Rongsen.Com.Cn 版权所有 2008-2010 京ICP备08007000号 京公海网安备11010802026356号 朝阳网安编号:110105199号
- 北京黑客防线网安工作室-黑客防线网安服务器维护基地为您提供专业的
服务器维护
,企业网站维护
,网站维护
服务 - (建议采用1024×768分辨率,以达到最佳视觉效果) Powered by 黑客防线网安 ©2009-2010 www.rongsen.com.cn
作者:黑客防线网安网站维护基地 来源:黑客防线网安网站维护基地 浏览次数:0 |
select count(*) from dba_indexes where tablespace_name = 'SYSTEM' and owner not in ('SYS','SYSTEM') / |
select segment_name, count(*) from dba_extents where segment_type='INDEX' and owner=UPPER('&owner') group by segment_name / |
select substr(segment_name,1,20) "SEGMENT NAME", bytes, count(bytes) from dba_extents where segment_name in ( select index_name from dba_indexes where tablespace_name=UPPER('&表空间')) group by segment_name,bytes order by segment_name / |
三. 索引的选择性
索引的选择性是指索引列中不同值的数目与表中记录数的比。如果一个表中有2000条记录,表索引列有1980个不同的值,那么这个索引的选择性就是1980/2000=0.99。
一个索引的选择性越接近于1,这个索引的效率就越高。
如果是使用基于cost的最优化,优化器不应该使用选择性不好的索引。如果是使用基于rule的最优化,优化器在确定执行路径时不会考虑索引的选择性(除非是唯一性索引),并且不得不手工优化查询以避免使用非选择性的索引。
确定索引的选择性,可以有两种方法:手工测量和自动测量。
(1)手工测量索引的选择性
如果要根据一个表的两列创建两列并置索引,可以用以下方法测量索引的选择性:
列的选择性=不同值的数目/行的总数 /* 越接近1越好 */
select count(distinct 第一列||'%'||第二列)/count(*) from 表名 / |
analyze table 表名 compute statistics / |
select distinct_keys from user_indexes where table_name='表名' and index_name='索引名' / |
select num_rows from user_tables where table_name='表名' / |
select i.distinct_keys/t.num_rows from user_indexes i, user_tables t where i.table_name='表名' and i.index_name='索引名' and i.table_name=t.table_name / |
select column_name, num_distinct from user_tab_columns where table_name='表名' / |
validate index 用户名.索引名 / |
select name, del_lf_rows, lf_rows, round((del_lf_rows/(lf_rows+0.0000000001))*100) "Frag Percent" from index_stats / |
alter index 用户名.索引名 rebuild tablespace 表空间名 storage(initial 初始值 next 扩展值) nologging / |
alter index用户名.索引名 coalesce / |
analyze index 用户名.索引名 delete statistics / |
五. 重建索引
(1)检查需要重建的索引。
根据以下几方面进行检查,确定需要重建的索引。
第一,查看SYSTEM表空间中的用户索引。
为了避免数据字典的碎片出现,要尽量避免在SYSTEM表空间出现用户的表和索引。
select index_name from dba_indexes where tablespace_name='SYSTEM' and owner not in ('SYS','SYSTEM') / |
set linesize 120 col "OWNER" format a20 col "INDEX" format a30 col "TABLE" format a30 col "TABLESPACE" format a30 select i.owner "OWNER", i.index_name "INDEX", t.table_name "TABLE", i.tablespace_name "TABLESPACE" from dba_indexes i, dba_tables t where i.owner=t.owner and i.table_name=t.table_name and i.tablespace_name=t.tablespace_name and i.owner not in ('SYS','SYSTEM') / |
col segment_name format a30 select owner, segment_name, sum(bytes) from dba_segments where tablespace_name='数据表空间名' and segment_type='INDEX' group by owner,segment_name / |
set linesize 100 col owner format a10 col segment_name format a30 col tablespace_name format a30 select count(*), owner, segment_name, tablespace_name from dba_extents where segment_type='INDEX' and owner not in ('SYS','SYSTEM') group by owner,segment_name,tablespace_name having count(*) >10 order by count(*) desc / |
set linesize 120 col "INDEX" format a30 col "TABLESPACE" format a20 select owner "OWNER", segment_name "INDEX", tablespace_name "TABLESPACE", bytes "BYTES/COUNT", sum(bytes) "TOTAL BYTES", round(sum(bytes)/(1024*1024),0) "TOTAL M", count(bytes) "TOTAL COUNT" from dba_extents where segment_type='INDEX' and segment_name in ( '索引名1', '索引名2', ...... ) group by owner,segment_name,segment_type,tablespace_name,bytes order by owner,segment_name / |
select round(bytes/(1024*1024),2) free(M) from sm$ts_free where tablespace_name='表空间名' / |
alter index 索引名 rebuild tablespace 索引表空间名 storage(initial 初始值 next 扩展值) nologging / |
select * from dba_extents where segment_name='索引名' / |
select * from dba_ind_columns where index_name like '表名%' / |
select * from '表名%' where ...... / |
select 'alter tablespace '||tablespace_name||' coalesce;' from dba_free_space_coalesced where percent_blocks_coalesced!=100 / |
alter tablespace 表空间名 coalesce / |
我要申请本站:N点 | 黑客防线官网 | |
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479 |