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

How do you truncate?

0 Answers  


What is offset in sql query?

0 Answers  


Can a view be mutating? If yes, then how?

0 Answers  


how to drop an existing view in mysql? : Sql dba

0 Answers  


How do I start sql from command line?

0 Answers  






What are the different types of dbms?

0 Answers  


What are the constraints available in sql?

0 Answers  


What is the difference between microsoft sql and mysql?

0 Answers  


Explain what is a column in a table?

0 Answers  


Can a commit statement be executed as part of a trigger?

0 Answers  


Is delete faster than truncate?

0 Answers  


What is sql injection owasp?

0 Answers  


Categories