Vertical & Horizontal Partitioning, Join & Hash Indexes and PPI?

What are the differences between the followings?
- Vertical & Horizontal Partitioning
vs
- Join & Hash Indexes
vs
- PPI

Questions by Sangra   answers by Sangra

Showing Answers 1 - 6 of 6 Answers

sureshkuncham

  • Nov 16th, 2012
 

PPI does not support any join index and hash index

  Was this answer useful?  Yes

yuvaevergreen

  • May 20th, 2013
 

Horizontal partitioning is used in large tables where no of rows are very high. Rows are broken and placed in partitions. Loading becomes faster and query performance would be good.

Vertical partitioning is used for tables with huge no of columns. Column wise data are broken and placed in partitions with a common key.

A multi/aggregate join index basically stores the results of the join in perm space.
A hash index basically stores the results of the table based on the hash value.

PPI basically partitions the data based on the column that is specified in the partition clause.

  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