一键导出 hive 中所有的表结构

通过创建 shell 脚本的方式:

步骤:

        1、先将 hive 中的 一个库下的所有表输出到一个文件中。

        2、在对这个文件进行遍历,一行数据就是一个表名,然后数据关于这个表名的建表语句到文件中。

#! /bin/bash


hive -e "use stg_jinxiong;
    show tables;
" > stg_jinxiong_tables.txt
sleep 1
cat stg_jinxiong_tables.txt | while read eachline

do

hive -e "use stg_jinxiong; show create table ${eachline};" >> stg_jinxiong_tables.txt

done

解释:

| 的含义:输入了如下指令:command0 | command1,则command0的输出流入到command1中

你可能感兴趣的:(datax,hive,hadoop,hive,hadoop)