I am trying to do a sqoop-import into hive database.
I would like to know the difference in these two available options
create-hcatalog-table vs create-hive-table
sqoop-import
--connect jdbc:mysql://localhost:3306/hadoopexample
--table employees
--create-hive-table
--fields-terminated-by ','
;
vs
sqoop-import
--connect jdbc:mysql://localhost:3306/hadoopexample
--table employees
--create-hcatalog-table
--fields-terminated-by ','
;