1、导出hive表结构
datastudio可以连接hive库,通过show databases 语句可以显示hive下建了多少数据库名。
使用use 数据库名,进入某个数据库下,通过show tables可显示该数据库下建了多少张表。
将所有库的表数据整理成库名.表名的形式放入txt中。
写shell脚本。读取txt内容。
#!/bin/bash
cat all_table.txt | while read eachline
do
hive -e "show create table ${eachline};" >> all_create_table.txt
done
将all_create_table.txt打开,批量将create table 替换成 ;create table ,如果建的是外部表,就需要将create external table 替换成 ; create external table。(因为导出的每个表后面并没有加分号,导入的数据,每个表的建表语句要以分号结尾)
2、导入hive表结构
将all_create_table.txt放入需要导入的服务器。
执行hive -f all_create_table.txt 即可。
标签:show,create,hive,导入,table,txt,结构 From: https://blog.csdn.net/weixin_42115825/article/details/136709952