当前位置:首页 » 数据仓库 » oracle数据库索引碎片
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

oracle数据库索引碎片

发布时间: 2023-08-28 09:41:57

‘壹’ 在Oracle数据库中按用户名重建索引的方法

如果你管理的Oracle数据库下某些应用项目有大量的修改删除操作 数据索引是需要周期性烂派的重建的

它不仅可以提高查询性能 还能增加索引表空间空闲空间大小

在ORACLE里大量删除记录后 表和索引里占用的数据块空间并没有释放

重建索引可以释放已删除记录索引占用的数据块空间

转移数据 重命名的方法可以重新组织表里的数据

下面是可以按ORACLE用户名生成重建索引的sql脚本

SET ECHO OFF; SET FEEDBACK OFF; SET VERIFY OFF; SET PAGESIZE ; SET TERMOUT ON; SET HEADING OFF; ACCEPT username CHAR PROMPT Enter the index username: ; spool /oracle/rebuild_&username sql; SELECT REM + + || chr( ) || REM | INDEX NAME : || owner || || segment_name || lpad( | (length(owner) + length(segment_name)) ) || chr( ) || REM | BYTES : || bytes || lpad ( | (length(bytes)) ) || chr( ) || REM | EXTENTS : || extents || lpad ( | (length(extents)) ) || chr( ) || REM + + || chr( ) || ALTER INDEX || owner || || segment_name || chr( ) || REBUILD || chr( ) || TABLESPACE || tablespace_name || chr( ) || STORAGE ( || chr( ) || INITIAL || initial_extent || chr( ) || NEXT || next_extent || chr( ) || MINEXTENTS || min_extents || chr( ) || MAXEXTENTS || max_extents || chr( ) || PCTINCREASE || pct_increase || chr( ) || ); || chr( ) || chr( ) FROM dba_segments WHERE segment_type = INDEX AND owner= &username ORDER BY owner bytes DESC; spool off;

如果你用的是WINDOWS系统 想改变输出文件的存放目录 修改spool后面的路径成

spool c oraclerebuild_&username sql

如果你只想对大于max_bytes的索引重建索闷档引 可以修改上面的SQL语句

在AND owner= &username 后面加个限制条件 AND bytes> &max_bytes

如果你想修改索引的存储参数 在重建索引rebuild_&username sql里改也可以

比如把pctincrease不等于零的值改成是零

生成的rebuild_&username sql文件我们需要来分析一下饥罩贺 它们是否到了需要重建的程度

分析索引 看是否碎片严重 SQL>ANALYZE INDEX &index_name VALIDATE STRUCTURE; col name heading Index Name format a col del_lf_rows heading Deleted|Leaf Rows format col lf_rows_used heading Used|Leaf Rows format col ratio heading % Deleted|Leaf Rows format SELECT name del_lf_rows lf_rows del_lf_rows lf_rows_used to_char(del_lf_rows / (lf_rows)* ) ratio FROM index_stats where name = upper( &index_name );

当删除的比率大于 % 时 肯定是需要索引重建的

经过删改后的rebuild_&username sql文件我们可以放到ORACLE的定时作业里

比如一个月或者两个月在非繁忙时间运行

如果遇到ORA 错误 表示索引在的表上有锁信息 不能重建索引

那就忽略这个错误 看下次是否成功

对那些特别忙的表要区别对待 不能用这里介绍的方法

lishixin/Article/program/Oracle/201311/19038