赞
踩
将hive表中的数据导出到其他任意目录,例如linux本地磁盘,例如hdfs,例如mysql等等
1)将查询的结果导出到本地 :第一种
insert overwrite local directory '/export/servers/exporthive/a'
select * from score;
2)将查询的结果格式化导出到本地 :第二种
insert overwrite local directory '/export/servers/exporthive'
row format delimited fields terminated by '\t'
collection items terminated by '#'
select * from student;
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;
注: 对于集合类型我们使用#来进行分割,因为这个表里面没有集合类型,所以加不加这个结果都一样
第四种
dfs -get
/export/servers/exporthive/000000_0
/export/servers/exporthive/local.txt;
第五种
基本语法:(hive -f/-e 执行语句或者脚本 > file)
bin/hive -e
“select * from myhive.score;” > /export/servers/exporthive/score.txt
第六种
export table score to '/export/exporthive/score';
第七种
以后单独会出一个文章去讲解
只能清空管理表,也就是内部表
truncate table score5;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。