Oracle 中有两种主要的索引机制:B-树索引(B-tree indexes) 和 位图索引(bitmap indexes),其它的一些索引,如位图连接索引(bitmap join index)、基于函数的索引(function-based indexes)、反转键索引(reverse key indexes)等,都是基于这两种索引的变体。本文主要介绍这两种主要的索引机制。 一 基础知识 1. 数据块(data bolck)     数据块是Oracle中管理数据文件中存储空间的单位,是数据库使用的I/O的最小单位。Oracle中所有的逻辑数据库结构,如表 ...
2007-10-25

[转载]Understanding Indexes

关键字: index B-tree
原文地址:http://www.orafaq.com/node/1403 What is an Index? This is covered in the Oracle Concepts manual, of course, but here's the Cliff Notes version. Blocks First you need to understand a block. A block - or page for Microsoft boffins - is the smallest unit of disk that Oracle will read o ...