Results 1 to 3 of 3

Thread: Bitmap Index for Oracal 10g

  1. #1
    Join Date
    Jan 2009
    Posts
    24

    Bitmap Index for Oracal 10g

    hi i am bit interested to know about Bitmap Index as highly compressed index type that tends to be used primarily for data warehouses.i am not completed my oracal10g course,its currently going on but i come across this in my work so please help me to understand it.thank you.

  2. #2
    Join Date
    Feb 2008
    Posts
    1,852

    Re: Bitmap Index for Oracal 10g

    Oracle's index types are Bitmap indexes and B-Tree indexes. B-Tree indexes are the regular type that OLTP systems make much use of, and bitmap indexes are a highly compressed index type that tends to be used primarily for data warehouses.

    Characteristic of Bitmap Indexes

    * For columns with very few unique values (low cardinality) Columns that have low cardinality are good candidates (if the cardinality of a column is <= 0.1 % that the column is ideal candidate, consider also 0.2% – 1%)

    * Tables that have no or little insert/update are good candidates (static data in warehouse)

    * Stream of bits: each bit relates to a column value in a single row of table

    Advantage
    The advantages of them are that they have a highly compressed structure, making them fast
    Compressed indexes represent a trade-off between CPU usage and disk space usage.
    can be used very successfully for indexing columns with many thousands of different values.

    Disadvantage
    The reason for confining bitmap indexes to data warehouses is that the overhead on maintaining them is enormous.
    modification requires a great deal more work on behalf of the system than a modification to a b-tree index.

  3. #3
    Join Date
    May 2008
    Posts
    2,389

    Re: Bitmap Index for Oracal 10g

    bitmap indexes are best suited for DSS.With bitmap indexes, the optimizer can efficiently answer queries that include AND, OR, or XOR.Most important, bitmap indexes in DSS systems support ad hoc queries.check here
    http://www.oracle.com/technology/pub...a_indexes.html

Similar Threads

  1. What are Bitmap files?
    By L 4 Life in forum Windows Software
    Replies: 5
    Last Post: 18-01-2011, 08:04 AM
  2. How can I resize the Bitmap image?
    By G.Burgess in forum Windows Software
    Replies: 3
    Last Post: 26-10-2010, 02:35 PM
  3. Does Google decides which content to index & what not to index?
    By Uddhav in forum Technology & Internet
    Replies: 5
    Last Post: 04-03-2010, 07:37 PM
  4. Inserting an index entry into index 0 of file 25
    By Dharmesh Arora in forum Operating Systems
    Replies: 3
    Last Post: 16-07-2009, 10:10 AM
  5. How to alter Table in Oracal
    By Japesh in forum Software Development
    Replies: 3
    Last Post: 30-03-2009, 01:17 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,144,400.42262 seconds with 16 queries