Hey,
You can load data from flat files into Hive using the command below:
'LOAD DATA... INTO TABLE' command
You can see the following example below:
hive> LOAD DATA LOCAL INPATH './files/employees.txt' OVERWRITE INTO TABLE employees;
hive> LOAD DATA INPATH './files/employees.txt' OVERWRITE INTO TABLE employees;
To know more, It's recommended to join Big Data Certification today.