[轉載]oracle_Bitmap Index
From:http://blog.csdn.net/changtiger/archive/2008/11/20/3342538.aspx
Bitmap index 的特點:
1. 對於大資料量的查詢,bitmap index 能更有效的減少響應時間
2. 減少index的佔用空間
當查詢語句的where 字句中包含多個column時, 點陣圖索引最為有效. 因為在查詢表之前, 那些有一個不符合所有column條件的row會直接被bitmap index 過濾掉.這樣就大大減少了響應時間. 在多數情況下, 一般最好是針對單個column建立bitmap index 而不是組合索引.
建立bitmap index的時候, 必須使用 nologging 和 compute statistics.而且, bitmap index 如果有問題, 最好是直接drop 然後重建而不是去想辦法維護它.
Cardinality 基數, 勢的集
每個column不同的值的個數叫基數. distinct value. bitmap index 非常適合建在基數比較小的column上, 比如說性別.而且如果說某個table裡面有1000000條記錄, 而某個column只有1000個不同的值, 相當於記錄條數是0.1%. 這種情況下, 使用bitmap index也是不錯的.
對於具有唯一約束的或者是基數比較大的column, 比如ID, 最好用普通索引, 即b-tree index.
對於fact table 和 dimension table, 可以在fact table中的外來鍵上建立bitmap index.
bitmap index 和 b-tree 另外一個最大的不同在於對NULL 的處理. bitmap index 可以處理null值, 而b-tree index 則無法儲存NULL. 如果是bitmap index 的話, 你可以在where 字句中使用NULL, 如:
select count(*) from customer where customer_long_name is null;
此時, oracle 會使用customer_long_name 上的bitmap_index快速得到值, 甚至不用去真正的access table 上的資料.
但是b-tree無法做到這點因為你 無法在b-tree 上儲存NULL值. 所以當你執行:
select count(*) from customer 的時候, oracle 會自動從NOT NULL的欄位上計算總數.
在partitioned table 上, Bitmap index 只能是local index 而不能是global index.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26077805/viewspace-704529/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [轉貼]Skip Scan IndexIndex
- index branch and leaf block structure(轉)IndexBloCStruct
- Oracle的Index-3(轉)OracleIndex
- Oracle的Index-2(轉)OracleIndex
- Oracle的Index-1(轉)OracleIndex
- Get table and index DDL in the easy way(轉)Index
- reverse index 反轉索引相關Index索引
- KEEP INDEX | DROP INDEXIndex
- rowid,index,INDEX FULL SCAN,INDEX FAST FULL SCAN|IndexAST
- 跳躍式索引(Skip Scan Index)淺析 - 轉索引Index
- index of rmvb mp3 rm突破站點入口下載Index
- INDEX UNIQUE SCAN,INDEX FULL SCAN和INDEX FAST FULL SCANIndexAST
- Clustered Index Scan and Clustered Index SeekIndex
- oracle hint之full,index,index_asc,index_desc,index_combile示例OracleIndex
- IndexIndex
- Index的掃描方式:index full scan/index fast full scanIndexAST
- rebuild index 和 recreate index (重新建立index) 的區別RebuildIndex
- 【轉】OPTIMIZER_INDEX_COST_ADJ與成本計算Index
- pk 、unique index 和 index 區別Index
- global index & local index的區別Index
- alter index rebuild與index_statsIndexRebuild
- B-index、bitmap-index、text-index使用場景詳解Index
- 【轉載】ElasticsearchElasticsearch
- session轉載Session
- KPI(轉載)KPI
- JIT(轉載)
- 轉載方法
- Index Full Scan vs Index Fast Full ScanIndexAST
- Using index condition Using indexIndex
- 【Oracle】global index & local index的區別OracleIndex
- Index Full Scans和Index Fast Full ScansIndexAST
- What is meant by Primary Index and Secondary IndexIndex
- Index Full Scan 與 Index Fast Full ScanIndexAST
- IE 5.5 Index.dat 執行任意程式碼漏洞 (轉)Index
- PostgreSQL:INDEXSQLIndex
- <MYSQL Index>MySqlIndex
- jQuery index()jQueryIndex
- index索引Index索引