Skip to content

Instantly share code, notes, and snippets.

@meyarivan
Last active October 15, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meyarivan/ff6670430422bc586883 to your computer and use it in GitHub Desktop.
Save meyarivan/ff6670430422bc586883 to your computer and use it in GitHub Desktop.
#!/bin/bash
for DB in `hive -e "SHOW DATABASES;"`; do
for tbl in `hive -e "USE ${DB}; SHOW TABLES"`; do
hive -e "DESC FORMATTED ${DB}.${tbl};" > desc.${DB}.${tbl}
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment