Skip to content

Instantly share code, notes, and snippets.

@StuHorsman-zz
Created May 20, 2015 01:17
Show Gist options
  • Select an option

  • Save StuHorsman-zz/0cbc4d49ff6f6ab22306 to your computer and use it in GitHub Desktop.

Select an option

Save StuHorsman-zz/0cbc4d49ff6f6ab22306 to your computer and use it in GitHub Desktop.
Extract column names from Hive table
hive -S -e 'SET hive.cli.print.header=true; SELECT * FROM default.some_table LIMIT 0;' | sed -e 's/\t/,/g' > headers.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment