如果你管理的Oracle數(shù)據(jù)庫(kù)下某些應(yīng)用項(xiàng)目有大量的修改刪除操作, 數(shù)據(jù)索引是需要周期性的重建的。
它不僅可以提高查詢(xún)性能, 還能增加索引表空間空閑空間大小。
在ORACLE里大量刪除記錄后, 表和索引里占用的數(shù)據(jù)塊空間并沒(méi)有釋放。
重建索引可以釋放已刪除記錄索引占用的數(shù)據(jù)塊空間。
轉(zhuǎn)移數(shù)據(jù), 重命名的方法可以重新組織表里的數(shù)據(jù)。
下面是可以按ORACLE用戶(hù)名生成重建索引的SQL腳本:
SET ECHO OFF;
SET FEEDBACK OFF;
SET VERIFY OFF;
SET PAGESIZE 0;
SET TERMOUT ON;
SET HEADING OFF;
ACCEPT username CHAR PROMPT 'Enter the index username: ';
spool /oracle/rebuild_&username.sql;
SELECT
'REM +-----------------------------------------------+' || chr(10) ||
'REM | INDEX NAME : ' || owner || '.' || segment_name
|| lpad('|', 33 - (length(owner) + length(segment_name)) )
|| chr(10) ||
'REM | BYTES : ' || bytes
|| lpad ('|', 34-(length(bytes)) ) || chr(10) ||
'REM | EXTENTS : ' || extents
|| lpad ('|', 34-(length(extents)) ) || chr(10) ||
'REM +-----------------------------------------------+' || chr(10) ||
'ALTER INDEX ' || owner || '.' || segment_name || chr(10) ||
'REBUILD ' || chr(10) ||
'TABLESPACE ' || tablespace_name || chr(10) ||
'STORAGE ( ' || chr(10) ||
' INITIAL ' || initial_extent || chr(10) ||
' NEXT ' || next_extent || chr(10) ||
' MINEXTENTS ' || min_extents || chr(10) ||
' MAXEXTENTS ' || max_extents || chr(10) ||
' PCTINCREASE ' || pct_increase || chr(10) ||
');' || chr(10) || chr(10)
FROM dba_segments
WHERE segment_type = 'INDEX'
AND owner='&username'
ORDER BY owner, bytes DESC;
spool off;
如果你用的是WINDOWS系統(tǒng), 想改變輸出文件的存放目錄,修改spool后面的路徑成:
spool c:oraclerebuild_&username.sql;
如果你只想對(duì)大于max_bytes的索引重建索引,可以修改上面的SQL語(yǔ)句:
在AND owner='&username' 后面加個(gè)限制條件 AND bytes> &max_bytes
如果你想修改索引的存儲(chǔ)參數(shù), 在重建索引rebuild_&username.sql里改也可以。
比如把pctincrease不等于零的值改成是零。
生成的rebuild_&username.sql文件我們需要來(lái)分析一下,它們是否到了需要重建的程度:
分析索引,看是否碎片嚴(yán)重SQL>ANALYZE INDEX &index_name VALIDATE STRUCTURE;
col name heading 'Index Name' format a30
col del_lf_rows heading 'Deleted|Leaf Rows' format 99999999
col lf_rows_used heading 'Used|Leaf Rows' format 99999999
col ratio heading '% Deleted|Leaf Rows' format 999.99999
SELECT name,
del_lf_rows,
lf_rows - del_lf_rows lf_rows_used,
to_char(del_lf_rows / (lf_rows)*100,'999.99999') ratio
FROM index_stats where name = upper('&index_name');
當(dāng)刪除的比率大于15 - 20% 時(shí),肯定是需要索引重建的。
經(jīng)過(guò)刪改后的rebuild_&username.sql文件我們可以放到ORACLE的定時(shí)作業(yè)里:
比如一個(gè)月或者兩個(gè)月在非繁忙時(shí)間運(yùn)行。
如果遇到ORA-00054錯(cuò)誤,表示索引在的表上有鎖信息,不能重建索引。
那就忽略這個(gè)錯(cuò)誤, 看下次是否成功。
對(duì)那些特別忙的表要區(qū)別對(duì)待, 不能用這里介紹的方法,
還要把它們的索引從rebuild_&username.sql里刪去。
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄