Creating a Bitmap Index
Bitmap indexes are typically used in data warehouses. Data warehouses are databases containing very large amounts of data. The following statement creates a bitmap index on the ename column of the emp table:
CREATE BITMAP INDEX i_ename ON emp(ename);
Home »
Oracle »
Table »
Oracle »
Table »
Index:
- Creating a B-tree Index
- Composite Index
- Retrieving Information on Indexes
- Modifying an Index
- Dropping an Index
- Creating a Bitmap Index
Related: