Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Bit-Mapped Indexing Routines---Beta Testers Wanted

Re: Bit-Mapped Indexing Routines---Beta Testers Wanted

From: Diana Rae <diana.rae_at_autodesk.com>
Date: 1996/12/06
Message-ID: <32A86DB2.61CC@autodesk.com>#1/1

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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US