Oracle has 2 kinds of Index: B-tree index and Bitmap Index.
B-tree index is commonly used index, which is created using CREATE INDEX command.
B-tree index structure:
-
Root: Pointer to branch node
-
Branch: Pointer to Leaf node. The distinct value of index columns are sorted and divided into different groups. Each branch is mapped to a group of data.
-
Leaf: Each Leaf contains the rowid of the records it refers to. Leaf node are linked together in both directions, allowing ascending or descending search. Also leaf nodes can be sorted by ascending or descending.
Bitmap index is some special index, which is created using CREATE BITMAP INDEX command.
Bitmap Index structure:
Root: Pointer to branch nodeBranch: Pointer to Leaf node. Branch contains the start rowid and end rowid of the leaf blocks it refers to. (It is different from B-tree here. Here is start rowid and end rowid.)Leaf: Leaf is a bitmap. Each bit in the bitmap corresponds to a row in the table. You can think the bitmap like a table with RowID as Row Header and Values as column header. When the row has the value of the column header. It is marked to 1, else 0.
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/563971/viewspace-324393/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/563971/viewspace-324393/
本文详细介绍了Oracle数据库中两种类型的索引:B树索引和位图索引。B树索引是最常用的索引类型,其结构包括根节点、分支节点和叶节点;位图索引适用于某些特殊场景,其结构同样包含根节点、分支节点和叶节点,但叶节点是由位图构成。
750

被折叠的 条评论
为什么被折叠?



