hadoop之hive建表语句备份
Posted Mars.wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hadoop之hive建表语句备份相关的知识,希望对你有一定的参考价值。
转自:https://blog.csdn.net/t___z/article/details/78492113
#!/bin/bash hive -e "use lbi;show tables;" > hivetables.txt sleep(2) cat hivetables.txt |while read eachline do hive -e "show create table $eachline;" >>hivetablesDDL.txt done
以上是关于hadoop之hive建表语句备份的主要内容,如果未能解决你的问题,请参考以下文章