How the Bitmap indexes can be useful for Fact tables ?

Editorial / Best Answer

Answered by: thiru

  • Jun 25th, 2014


Using for low cardinality purpose

Showing Answers 1 - 6 of 6 Answers

thiru

  • Jun 25th, 2014
 

Using for low cardinality purpose

  Was this answer useful?  Yes

meera

  • Apr 27th, 2015
 

Indexes in general speeds up the data retreival from database. Generally the index we use in OLTP or the operational database is B-Tree index.

But, Bitmap index is very much important in case of datawarehouse.

1) This type of index works for the columns having Low cardinality.
2) This works way faster than B-tree index.
3) This type of index works efficiently only when very update and delete operations or done,as it is very tedious work to update all the indexes accordingly every time update or delete is done.
4) The DWH environments typically have large amounts of data and ad hoc queries, but a low level of concurrent DML transactions.
Hence Bitmap indexes are widely used in data warehousing environments

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions