what is HASH join?

Answers were Sorted based on User's Feedback



what is HASH join?..

Answer / avi007

Hash joins do not use indexes and perform full-table scans
often using parallel query. Hence, the use of hash joins
with parallel full-table scans tend to drive-up CPU
consumption.

Is This Answer Correct ?    9 Yes 2 No

what is HASH join?..

Answer / ankush

A hash join is a join optimization method where two tables
are joined based on a hashing algorithm.

Hashing refers to the conversion of a column's primary key
value to a database page number on which the row will be
stored. Retrieval operations that specify the key column
value use the same hashing algorithm and can locate the row
directly. Hashing provides fast retrieval for data that
contains a unique key value.

Note that a hash value cannot be converted back to the
original value.

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

What is the primary use of normalization?

0 Answers  


Define sql delete statement.

0 Answers  


What is the usage of distinct keyword?

0 Answers  


What are different types of queries in sql?

0 Answers  


Name some usages of database trigger?

0 Answers  






What is Histogram?

0 Answers   NIIT,


what are enums used for in mysql? : Sql dba

0 Answers  


Difference between SUBSTR and INSTR?

3 Answers  


What is the process of copying data from table a to table b?

0 Answers  


Can we use commit inside a trigger?

0 Answers  


how do you login to mysql using unix shell? : Sql dba

0 Answers  


what is 'mysqlshow'? : Sql dba

0 Answers  


Categories