Created 06-16-2018 08:01 PM
Created 06-18-2018 05:18 AM
Venkat Please try this :
hive -e 'set hive.cli.print.header=true; select * from your_Table' | sed 's/[\t]/,/g' > /home/yourfile.csv
Original answer https://stackoverflow.com/questions/17086642/how-to-export-a-hive-table-into-a-csv-file
Created 06-20-2018 05:58 PM
For this command I getting only the header.I want both header and data in the csv file
Created 06-21-2018 01:32 AM
You should be getting both header and data with this command. I have just added "hive.cli.print.header=true" to print header along with data.
hive -e 'set hive.cli.print.header=true; select * from your_Table' | sed 's/[\t]/,/g' > /home/yourfile.csv
Whats the result you are seeing if you just do "select * from your_Table"? Does the table have the data?
Created 06-21-2018 02:20 PM
Sorry @ssharma it is working but when I trying like this