Articles in this series
What is Hive ? Hive is built on top of Apache Hadoop, which is an open-source framework used to efficiently store and process large datasets. As a...
Hive Tables Internal Table internal data managed by hive external data stored in warehouse External Table internal data managed by hive external...
Create Database create database db_name; use db_name; Create Table Syntex create table table_name ...
🗂️ Hive SerDe SerDe is short for Serializer/Deserializer. Hive uses the SerDe interface for IO. The interface handles both serialization and...