浅谈oracle中重建索引 (ZT)

教程发布:风哥 教程分类:ITPUX技术网 更新日期:2022-02-12 浏览学习:137

浅谈oracle中重建索引

当我们创建索引时,oracle会为索引创建索引树,表和索引树通过rowid(伪列)来定位数据。当表里的数据发生更新时,oracle会自动维护索引树。但是在索引树中没有更新操作,只有删除和插入操作。
例如在某表id列上创建索引,某表id列上有值“101”,当我将“101”更新为“110”时,oracle同时会来更新索引树,但是oracle先将索引树中的“101”标示为删除(实际并未删除,只是标示一下),然后再将“110”写到索引树中。
如果表更新比较频繁,那么在索引中删除标示会越来越多,这时索引的查询效率必然降低,所以我们应该定期重建索引。来消除索引中这些删除标记。
一般不会选择先删除索引,然后再重新创建索引,而是rebuild索引。在rebuild期间,用户还可以使用原来的索引,并且rebuild新的索引时也会利用原来的索引信息,这样重建索引会块一些。

这个实验来察看索引中的删除标记,并且如何重建索引。

一、创建表、插入记录和创建索引
SQL> create table ind (id number,name varchar2(100));
表已创建。
SQL> create or replace procedure sp_insert_ind
2 is
3 begin
4 for i in 1..10000 loop
5 insert into ind values(i,to_char(i)||'aaaaaaaaaa');
6 end loop;
7 end;
8 /
过程已创建。
SQL> exec sp_insert_ind
PL/SQL 过程已成功完成。

SQL> create index ind_id_idx on ind(id);
索引已创建。

二、收集索引信息
--收集信息,没有更新数据字典,所以没有信息
SQL> select lf_rows,lf_rows_len,del_lf_rows,del_lf_rows_len from index_stats;
未选定行

--更新数据字典
SQL> ANALYZE INDEX ind_id_idx VALIDATE STRUCTURE;
索引已分析

--参数含义:
--LF_ROWS Number of values currently in the index
--LF_ROWS_LEN Sum in bytes of the length of all values
--DEL_LF_ROWS Number of values deleted from the index
--DEL_LF_ROWS_LEN Length of all deleted values
SQL> select lf_rows,lf_rows_len,del_lf_rows,del_lf_rows_len from index_stats;
LF_ROWS LF_ROWS_LEN DEL_LF_ROWS DEL_LF_ROWS_LEN
---------- ----------- ----------- ---------------
10000 149801 0 0

--察看索引中已经标示为删除的行除以总共的行的数量,目前为0
SQL> SELECT (DEL_LF_ROWS_LEN/LF_ROWS_LEN) * 100 AS index_usage FROM index_stats;
INDEX_USAGE
-----------
0

三、更新索引,并且重新察看信息

--更新表中1000行记录,这时会更新索引树
SQL> update ind set id=id+1 where id>9000;
已更新1000行。

SQL> ANALYZE INDEX ind_id_idx VALIDATE STRUCTURE;
索引已分析

--总共行的数量增加了1000行,并且标示为删除了1000行记录
SQL> select lf_rows,lf_rows_len,del_lf_rows,del_lf_rows_len from index_stats;
LF_ROWS LF_ROWS_LEN DEL_LF_ROWS DEL_LF_ROWS_LEN
---------- ----------- ----------- ---------------
11000 164792 1000 14990

--察看索引中已经标示为删除的行除以总共的行的数量,目前为 9.09631536,这个值如果查过20,肯定要重建索引了。
SQL> SELECT (DEL_LF_ROWS_LEN/LF_ROWS_LEN) * 100 AS index_usage FROM index_stats;
INDEX_USAGE
-----------
9.09631536

四、重建索引

--重建索引
SQL> alter index ind_id_idx rebuild;
索引已更改。

SQL> select lf_rows,lf_rows_len,del_lf_rows,del_lf_rows_len from index_stats;
未选定行

---以下信息又基本回到从前
SQL> ANALYZE INDEX ind_id_idx VALIDATE STRUCTURE;

索引已分析
SQL> select lf_rows,lf_rows_len,del_lf_rows,del_lf_rows_len from index_stats;
LF_ROWS LF_ROWS_LEN DEL_LF_ROWS DEL_LF_ROWS_LEN
---------- ----------- ----------- ---------------
10000 149802 0 0
SQL> SELECT (DEL_LF_ROWS_LEN/LF_ROWS_LEN) * 100 AS index_usage FROM index_stats;
INDEX_USAGE
-----------
0

本文标签:
网站声明:本文由风哥整理发布,转载请保留此段声明,本站所有内容将不对其使用后果做任何承诺,请读者谨慎使用!
【上一篇】
【下一篇】