CREATE BITMAP INDEX
Specify BITMAP to indicate that index is to be created with a bitmap for each distinct
key, rather than indexing each row separately. Bitmap indexes store the rowids
associated with a key value as a bitmap. Each bit in the bitmap corresponds to a
possible rowid. If the bit is set, then it means that the row with the corresponding
rowid contains the key value. The internal representation of bitmaps is best suited for
applications with low levels of concurrent transactions, such as data warehousing.
————————————————————————————————————————————————————————————————————————————————
Note: Oracle does not index table rows in which all key columns
are null except in the case of bitmap indexes. Therefore, if you want
an index on all rows of a table, then you must either specify NOT
NULL constraints for the index key columns or create a bitmap
index.
————————————————————————————————————————————————————————————————————————————————
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10599713/viewspace-1001827/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Bitmap IndexIndex
- bitmap join indexIndex
- Restrictions on Create Bitmap IndexesRESTIndex
- create index/create index online區別Index
- b+ and bitmap indexIndex
- B-tree and Bitmap IndexIndex
- create index online 和create index 不同及注意點Index
- [轉載]oracle_Bitmap IndexOracleIndex
- Bitmap Index Example (223)Index
- hive orc表'orc.create.index'='true'與'orc.create.index'='false'HiveIndexFalse
- create index .. onlineIndex
- Unable to create git index lockGitIndex
- create index onlineIndex
- Create Index ...ONLINEIndex
- Create index with open on-line index creationIndex
- oracle 點陣圖索引(bitmap index)Oracle索引Index
- 點陣圖索引:原理(BitMap index)索引Index
- 點陣圖索引(bitmap-index)索引Index
- B-index、bitmap-index、text-index使用場景詳解Index
- CREATE INDEX ......ONLINE分析Index
- create index , rebuild index troubleshooting 索引故障解決IndexRebuild索引
- 點陣圖索引(Bitmap Index)——索引共用索引Index
- Bitmap Indexes on Index-Organized Tables (232)IndexZed
- bitmap index點陣圖索引系列(一)Index索引
- create index online 與rebuild index onlineIndexRebuild
- create index online 與rebuild index onlineIndexRebuild
- CREATE INDEX index1 ON table1(col1)Index
- PostgreSQL DBA(119) - pgAdmin(LIMIT:Index Scan vs Bitmap Index Scan)SQLMITIndex
- postgresql create index concurrently過程描述SQLIndex
- MySQL online create index實現原理MySqlIndex
- Unable to create index.lock File exists錯誤Index
- 加快create / rebuild index的3個點(zt)RebuildIndex
- Default behavior of create & rebuild index in 10G (zt)RebuildIndex
- 加快建立索引(create / rebuild index) 的幾點索引RebuildIndex
- zt_深入理解bitmap index點陣圖索引Index索引
- 【Bitmap Index】B-Tree索引與Bitmap點陣圖索引的鎖代價比較研究Index索引
- create index ORA-00376 處理方法Index
- 實踐001-elasticsearch的index、create、updateElasticsearchIndex