beeline下獲取hive建表語句

#!/bin/bash hive -S -e "use 數據庫名;show tables;" >tables.txt cat tables.txt | while read eachline do hive -S -e "use 數據庫名;show create table ${eachline};" >> tablesDDL.hql done
相關文章
相關標籤/搜索