当前位置:   article > 正文

hive表中的数据导出:表数据的导出7种方式_hive导出表结构和数据

hive导出表结构和数据

将hive表中的数据导出到其他任意目录,例如linux本地磁盘,例如hdfs,例如mysql等等

insert导出

1)将查询的结果导出到本地 :第一种

insert overwrite local directory '/export/servers/exporthive/a' 
select * from score;
  • 1
  • 2

2)将查询的结果格式化导出到本地 :第二种

insert overwrite local directory '/export/servers/exporthive' 
row format delimited fields terminated by '\t' 
collection items terminated by '#' 
select * from student;
  • 1
  • 2
  • 3
  • 4

collection items terminated by ‘#’ 对集合类型使用#来进行分割

3)将查询的结果导出到HDFS上(没有local):第三种

insert overwrite directory '/export/servers/exporthive' 
row format delimited fields terminated by '\t' 
collection items terminated by '#' select * from score;
  • 1
  • 2
  • 3

注: 对于集合类型我们使用#来进行分割,因为这个表里面没有集合类型,所以加不加这个结果都一样

Hadoop命令导出到本地

第四种

dfs -get 
/export/servers/exporthive/000000_0 
/export/servers/exporthive/local.txt;
  • 1
  • 2
  • 3

在这里插入图片描述

hive shell 命令导出

第五种
基本语法:(hive -f/-e 执行语句或者脚本 > file)
bin/hive -e
“select * from myhive.score;” > /export/servers/exporthive/score.txt

在这里插入图片描述

export导出到HDFS上

第六种

export table score to '/export/exporthive/score';
  • 1

在这里插入图片描述

sqoop导出

第七种
以后单独会出一个文章去讲解

清空数据表

只能清空管理表,也就是内部表

truncate table score5;
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/577423
推荐阅读
相关标签
  

闽ICP备14008679号