I am new to HDFS, Hive, Sqoop and learning the concepts now. I have a question here. I have created a Hive table with "ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' STORED AS TEXTFILE"
I have imported an oracle table data to the Hive table using Hive [I have used --Hive-import option] that I have created. I was hoping that the table data file in HDFS will have columns delimited by commas. But it is not the case. Columns are not delimited by commas in the HDFS file. Is this the default behavior or am I missing something.
Kindly clarify. Thanks in advance!
code
sqoop import --connect <My_database_instance_details> --username <my_username> -P --table dummy.sample_table --columns "<Columns_names_separated_by_comma>" --hive-import --hive-table Sample_sqoop_tab – D789rul