Question - How can you transfer data from Hive to HDFS?
Answer -
By writing the query:
hive> insert overwrite directory '/' select * from emp;
Write the query for the data to be imported from Hive to HDFS. The output received will be stored in part files in the specified HDFS path.