码迷,mamicode.com
首页 > 其他好文 > 详细

hive导数据

时间:2021-02-22 12:21:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:from   oca   客户   解决   use   file   条件   select   table   

在hive客户端建一张表比如bb

条件bb与abc表结构相同,abc有数据,把abc的数据导到bb里

hive -e是为了解决每次进入客户端的麻烦操作,使用了hive -e命令,可以在hive客户端外对客户端进行操作,

例如

hive -e "use aaa;select * from abc limit 100" > ./files

数据导入到files文件之后

方式一:

进入hive客户端执行命令

load data local inpath "/home/aaa/files" into table abc;

 方式二:

hadoop fs -put .files 集群目录

hive导数据

标签:from   oca   客户   解决   use   file   条件   select   table   

原文地址:https://www.cnblogs.com/simpledu/p/14424156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!