ORACLE中index的rebuild
ORACLE中index的rebuild
Oracle裡大量刪除記錄後,表和索引裡佔用的資料塊空間並沒有釋放。
table move可以釋放已刪除記錄表佔用的資料塊空間,整理碎片。如果將表格用move方式整理碎片後,索引將失效,這時需要將索引重建。
重建索引可以釋放已刪除記錄索引佔用的資料塊空間。重建索引不僅能增加索引表空間空閒空間大小,還能夠提高查詢效能。
Sql程式碼 收藏程式碼
--table move
alter table tbl move;
--rebuild索引
alter index idx_tbl_col rebuild;
alter index idx_tbl_col rebuild online;
--rename
ALTER INDEX employee_idx RENAME TO employee_index_Newname;
alter index rebuild online實質上是掃描表而不是掃描現有的索引塊來實現索引的重建.
alter index rebuild 只掃描現有的索引塊來實現索引的重建。
rebuild
index online在執行期間不會阻塞DML操作,但在開始和結束階段,需要請求模式為4的TM鎖。因此,如果在rebuild index
online開始前或結束時,有其它長時間的事物在執行,很有可能就造成大量的鎖等待。也就是說在執行前仍會產生阻塞, 應該避免排他鎖.
而rebuild index在執行期間會阻塞DML操作, 但速度較快.
而rebuild index在執行期間會阻塞DML操作, 但速度較快.
兩者重建索引時的掃描方式不同,rebuild用的是“INDEX FAST FULL SCAN”,rebuild online用的是“TABLE ACCESS FULL”; 即rebuild index是掃描索引塊,而rebuild index online是掃描全表的資料塊.
普通情況下建立索引或者rebuild索引時,oracle會對基表加share鎖,由於share鎖和 row-X是不相容的,也就是說,在建立索引期間,無法對基表進行DML操作。
是否加online,要看你的系統需求。因為不加online時rebuild會阻塞一切DML操作。
當我們對索引進行rebuild時,如果不加online選項,oracle則直接讀取原索引的資料;當我們新增online選項時,oracle是直接掃描表中的資料
索引在重建時,查詢仍然可以使用舊索引。實際上,oracle在rebuild時,在建立新索引過程中,並不會刪除舊索引,直到新索引rebuild成功。
從這點可以知道rebuild比刪除索引然後重建索引的一個好處是不會影響原有的SQL查詢,但也正由於此,用rebuild方式建立索引需要相應表空間的空閒空間是刪除重建方式的2倍。
可以透過如下的sql看到rebuild前後的索引空間大小
Select Segment_Name, Sum(bytes) / 1024 / 1024/1024 as Gsize
From User_Extents
Group By Segment_Name
order by Gsize desc
不能直接rebuild整個分割槽索引
對於非組合索引,需要rebuild每個分割槽(partition),不能直接rebuild整個索引
對於組合索引,需要rebuild每個子分割槽(subpartition),不能直接rebuild整個索引,也不能直接rebuild分割槽
使用下面的sql可以生成相應的rebuild語句,注意是否加上online
非組合索引:
select 'alter index ' || index_owner || '.' ||index_name ||' rebuild partition ' || PARTITION_NAME || ' nologging parallel ;'
from dba_ind_partitions
where index_owner = 'USER_NAME'
AND INDEX_NAME = 'idx_tbl_col'
組合索引:
select 'alter index ' || index_owner || '.' ||index_name ||' rebuild subpartition ' || subpartition_name || ' parallel ;'
from dba_ind_subpartitions where index_owner='&index_owner' and index_name='&index_name';
參考:http://blog.csdn.net/robinson1988/article/details/5735589
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31397003/viewspace-2141735/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle alter index rebuild 說明OracleIndexRebuild
- rebuild indexRebuildIndex
- index rebuildIndexRebuild
- rebuild index 排序RebuildIndex排序
- sybase rebuild indexRebuildIndex
- Oracle效能優化之“少做事”(rebuild index)Oracle優化RebuildIndex
- Oracle什麼情況下需要rebuild indexOracleRebuildIndex
- 【羅玄】從鎖的角度看rebuild index online和rebuild indexRebuildIndex
- Index rebuild --case 1IndexRebuild
- alter index rebuild 與 rebuild onlineIndexRebuild
- alter index rebuild與index_statsIndexRebuild
- alter index rebuild和rebuild online的區別IndexRebuild
- rebuild index 和 recreate index (重新建立index) 的區別RebuildIndex
- Index Online RebuildIndexRebuild
- 聊聊索引Index Rebuild和Rebuild Online(下)索引IndexRebuild
- 聊聊索引Index Rebuild和Rebuild Online(上)索引IndexRebuild
- alter index ind1 rebuild 和alter index ind1 rebuild onlineIndexRebuild
- index rebuild online的問題IndexRebuild
- 大資料量rebuild index的經歷大資料RebuildIndex
- create index , rebuild index troubleshooting 索引故障解決IndexRebuild索引
- 加快create / rebuild index的3個點(zt)RebuildIndex
- 加快建立索引(create / rebuild index) 的幾點索引RebuildIndex
- create index online 與rebuild index onlineIndexRebuild
- create index online 與rebuild index onlineIndexRebuild
- Oracle create/rebuild index開並行時要記得noparallel哦~OracleRebuildIndex並行Parallel
- alter index rebuild online引發的血案IndexRebuild
- alter index ... rebuild online的機制(zt)IndexRebuild
- oracle10g_alter index rebuild_online_重構索引OracleIndexRebuild索引
- Oracle 10g rebuild index,索引原來統計資訊丟失Oracle 10gRebuildIndex索引
- 【江楓 】Oracle 9i和10g在create index和rebuild index的統計資訊的區別OracleIndexRebuild
- rebuild index online的鎖機制淺析RebuildIndex
- INDEX REBUILD和INDEX REORGANIZE和UPDATE STATISTICS是否涉及Sch-M的案例分析IndexRebuild
- Default behavior of create & rebuild index in 10G (zt)RebuildIndex
- 關於rebuild index online 及drop index後重建問題RebuildIndex
- 重建索引index rebuild online vs offline vs index coalesce vs index shrik space索引IndexRebuild
- 關於move table和rebuild index批量操作的記錄RebuildIndex
- 一次大資料量rebuild index的經歷大資料RebuildIndex
- 測試index online rebuild故障記錄IndexRebuild