GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Database

 Print  |  
Question:  What is a HASH INDEX and how does it compare to other indexes?



September 09, 2006 02:12:18 #1
 opbang   Member Since: March 2006    Total Comments: 46 

RE: What is a HASH INDEX and how does it comapre to ot...
 

A  Hash index stores key value pairs based on a pseudo randomizing function called hash function

A B+- Tree is a balanced tree whose leaves contain a sequence of key pointer pairs.

- Use a hash index for point queries only. Use a B- Tree if multipoint queries or range queries are used.

     

 

Back To Question