GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Oracle  >  Concepts and Architecture
Go To First  |  Previous Question  |  Next Question 
 Concepts and Architecture  |  Question 64 of 74    Print  
What is the diff b/w BTREE INDEX and BITMAP INDEX

  
Total Answers and Comments: 7 Last Update: December 31, 2008     Asked by: ANAND 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
July 13, 2006 11:44:09   #1  
jiawei wang        

RE: What is the diff b/w BTREE INDEX and BITMAP INDEX
bitmap indexes are more advantageous than b-tree indexes when the table has millions of rows and the key columns have low cardinality. bitmap indexes provide better performance than b tree indexes when queries often use a combination of multiple where conditions involving the OR operator the table is read-only or when there is low update activity on the key columns.

 
Is this answer useful? Yes | No
September 14, 2006 04:44:22   #2  
manish.hoiyani        

RE: What is the diff b/w BTREE INDEX and BITMAP INDEX

b-tree indexes are used for high cardinaties usuall when we have too many distinct columns. and bitmap indexex are used for low cardinaties usuallywhen we have repeated columns


 
Is this answer useful? Yes | No
October 03, 2006 02:30:55   #3  
Adarsh S Pazhayampillil        

RE: What is the diff b/w BTREE INDEX and BITMAP INDEX

b-tree indexes are used usuall when we have too many distinct columns and for high cardinaties . and bitmap indexex are used for low cardinaties usually when we have repeated columns.


 
Is this answer useful? Yes | No
September 19, 2007 04:04:00   #4  
Mohammed Abdul Afroze        

RE: What is the diff b/w BTREE INDEX and BITMAP INDEX
Difference Between B-Tree Index & Bitmap Index.

1. B-tree Index has low cardinality values where as Bitmap Index has High Cardinality values.
2. B-tree Index is userful for OLTP where as Bitmap Index is useful for Dataware Housing.
3. B-tree index updates on key values has relatively inexpensive where as Bitmap index has more expensive.

 
Is this answer useful? Yes | No
October 17, 2007 11:02:10   #5  
C.RAMESH        

RE: What is the diff b/w BTREE INDEX and BITMAP INDEX
Btree Index is very usefull for OLTP and BITMAP index are useful for Decision Support System. When OLTP environment higly level DML activites where doing and it is better to use Btree indexes is better than Bitmap indexes. Where as BITMAP indexes is better for Decision support System because there will be few distinct values.
 
Is this answer useful? Yes | No
June 17, 2008 06:05:37   #6  
luttappi Member Since: June 2008   Contribution: 3    

RE: What is the diff b/w BTREE INDEX and BITMAP INDEX
Other than the way they implemented one of the functional difference is Bitmap index can index null values where as BTREE index cannot.
 
Is this answer useful? Yes | No
December 31, 2008 13:09:34   #7  
subajay Member Since: November 2007   Contribution: 1    

RE: What is the diff b/w BTREE INDEX and BITMAP INDEX

Bitmap index:
------------
A type of index that uses a string of bits to quickly locate rows in a table. Bitmap indexes are normally used to index low cardinality columns in a warehouse environment.

Btree index:
------------
A type of index that uses a balanced tree structure for efficient record retrieval. B-tree indexes store key data in ascending or descending order.


 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape