89
HIVE Partitioning
Table partitioning means dividing table into some parts based on values of a particular column like date or country, segregate the records into different files. It can be done on more than one column. The advantage of portioning is that since the data is stored in slices query response time is faster.
Next TopicHive Commands