程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> 教您如何實現Oracle重建索引

教您如何實現Oracle重建索引

編輯:Oracle數據庫基礎

Oracle重建索引操作大家經常會用到,下面就為您詳細介紹Oracle重建索引方面的知識,供您參考,如果您對此方面感興趣的話,不妨一看。

如果你管理的Oracle數據庫下某些應用項目有大量的修改刪除操作, 數據索引是需要周期性的重建的.

它不僅可以提高查詢性能, 還能增加索引表空間空閒空間大小. 在ORACLE裡大量刪除記錄後, 表和索引裡占用的數據塊空間並沒有釋放. Oracle重建索引可以釋放已刪除記錄索引占用的數據塊空間. 轉移數據, 重命名的方法可以重新組織表裡的數據.

下面是可以按ORACLE用戶名生成Oracle重建索引的SQL腳本:

  1. SET ECHO OFF;   
  2.  
  3. SET FEEDBACK OFF;   
  4.  
  5. SET VERIFY OFF;   
  6.  
  7. SET PAGESIZE 0;   
  8.  
  9. SET TERMOUT ON;   
  10.  
  11. SET HEADING OFF;   
  12.  
  13. ACCEPT username CHAR PROMPT 'Enter the index username: ';   
  14.  
  15. spool /Oracle/rebuild_&username.sql;   
  16.  
  17. SELECT   
  18.  
  19. 'REM +-----------------------------------------------+' || chr(10) ||   
  20.  
  21. 'REM | INDEX NAME : ' || owner || '.' || segment_name   
  22.  
  23. || lpad('|', 33 - (length(owner) + length(segment_name)) )   
  24.  
  25. || chr(10) ||   
  26.  
  27. 'REM | BYTES : ' || bytes   
  28.  
  29. || lpad ('|', 34-(length(bytes)) ) || chr(10) ||   
  30.  
  31. 'REM | EXTENTS : ' || extents   
  32.  
  33. || lpad ('|', 34-(length(extents)) ) || chr(10) ||   
  34.  
  35. 'REM +-----------------------------------------------+' || chr(10) ||   
  36.  
  37. 'ALTER INDEX ' || owner || '.' || segment_name || chr(10) ||   
  38.  
  39. 'REBUILD ' || chr(10) ||   
  40.  
  41. 'TABLESPACE ' || tablespace_name || chr(10) ||   
  42.  
  43. 'STORAGE ( ' || chr(10) ||   
  44.  
  45. ' INITIAL ' || initial_extent || chr(10) ||   
  46.  
  47. ' NEXT ' || next_extent || chr(10) ||   
  48.  
  49. ' MINEXTENTS ' || min_extents || chr(10) ||   
  50.  
  51. ' MAXEXTENTS ' || max_extents || chr(10) ||   
  52.  
  53. ' PCTINCREASE ' || pct_increase || chr(10) ||   
  54.  
  55. ');' || chr(10) || chr(10)   
  56.  
  57. FROM dba_segments   
  58.  
  59. WHERE segment_type = 'INDEX'   
  60.  
  61. AND owner='&username'   
  62.  
  63. ORDER BY owner, bytes DESC;   
  64.  
  65. spool off;   

如果你用的是Windows系統, 想改變輸出文件的存放目錄, 修改spool後面的路徑成:

spool c:\Oracle\rebuild_&username.sql;

如果你只想對大於max_bytes的索引重建索引, 可以修改上面的SQL語句:

在AND owner='&username' 後面加個限制條件 AND bytes> &max_bytes

如果你想修改索引的存儲參數, 在Oracle重建索引rebuild_&username.sql裡改也可以. 比如把pctincrease不等於零的值改成是零. 生成的rebuild_&username.sql文件我們需要來分析一下, 它們是否到了需要重建的程度:

分析索引,看是否碎片嚴重

  1. SQL>ANALYZE INDEX &index_name VALIDATE STRUCTURE;   
  2.  
  3. col name heading 'Index Name' format a30   
  4.  
  5. col del_lf_rows heading 'Deleted|Leaf Rows' format 99999999   
  6.  
  7. col lf_rows_used heading 'Used|Leaf Rows' format 99999999   
  8.  
  9. col ratio heading '% Deleted|Leaf Rows' format 999.99999   
  10.  
  11. SELECT name,   
  12.  
  13. del_lf_rows,   
  14.  
  15. lf_rows - del_lf_rows lf_rows_used,   
  16.  
  17. to_char(del_lf_rows / (lf_rows)*100,'999.99999') ratio   
  18.  
  19. FROM index_stats where name = upper('&index_name');   

當刪除的比率大於15 - 20% 時,肯定是需要索引重建的. 經過刪改後的rebuild_&username.sql文件我們可以放到Oracle的定時作業裡:

比如一個月或者兩個月在非繁忙時間運行. 如果遇到ORA-00054錯誤, 表示索引在的表上有鎖信息, 不能重建索引. 那就忽略這個錯誤, 看下次是否成功. 對那些特別忙的表要區別對待, 不能用這裡介紹的方法, 還要把它們的索引從rebuild_&username.sql裡刪去。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved