Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Bit-Mapped Indexing Routines---Beta Testers Wanted
Bitmap indexes are used for high-performance query execution, such as in a data warehouse environment. They are best used on columns with a low cardinality. For example, if your data values for column "direction" were "up", "down", "left", and "right", the bitmap index would look as follows:
direction = "up" 0 1 0 0 0 0 0 0 1 0 1 0 direction = "down" 0 0 1 1 0 0 1 1 0 0 0 1 direction = "left" 1 0 0 0 0 1 0 0 0 0 0 0 direction = "right" 0 0 0 0 1 0 0 0 0 1 0 0
rather than mapping the full value.
ZOD wrote:
>
> I thought it was "bitWISE" indexing not "bitmapped" indexing. Please
> correct me on this.
>
> Bill Gfroehrer...
Received on Fri Dec 06 1996 - 00:00:00 CST
![]() |
![]() |