Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

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.