Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

How to create excel file from Hive query output?

avatar
 
1 ACCEPTED SOLUTION

avatar

You can use the below command which generates the tsv file:

hive -e 'select * from table' > output.tsv

View solution in original post

3 REPLIES 3

avatar

You can use the below command which generates the tsv file:

hive -e 'select * from table' > output.tsv

avatar

My file should be in the extension of .xslx @Sandeep Nemuri

avatar

I don't think we have a way to write a .xslx file, However you can write csv or tsv which are compatible with excel.