本次博主为大家带来的是Hive表中数据的加载与导出。希望能够帮助到大家。
create table score3 like score;
insert into table score3 partition(month ='201807') values ('001','002','100');
(linux) load data local inpath ‘/export/servers/hivedatas/score.csv’ overwrite into table score partition(month=‘201806’);
(HDFS) load data inpath ‘/export/servers/hivedatas/score.csv’ overwrite into table score
partition(month=‘201806’);
create table score4 like score;
insert overwrite table score4 partition(month = '201806') select s_id,c_id,s_score from score;
关键字overwrite 必须要有
常用于实际生产环境当中,将一张表拆开成两部分或者多部分
load data local inpath '/export/servers/hivedatas/score.csv' overwrite into table score partition(month='201806');
create table score_first( s_id string,c_id string) partitioned by (month string) row format delimited fields terminated by '\t' ;
create table score_second(c_id string,s_score int) partitioned by (month string) row format delimited fields terminated by '\t';
from score insert overwrite table score_first partition(month='201806') select s_id,c_id insert overwrite table score_second partition(month = '201806') select c_id,s_score;
将查询的结果保存到一张表当中去
create table score5 as select * from score;
create external table score6 (s_id string,c_id string,s_score int) row format delimited fields terminated by '\t' location '/myscore6';
hdfs dfs -mkdir -p /myscore6
hdfs dfs -put score.csv /myscore6;
select * from score6;
将hive表中的数据导出到其他任意目录,例如linux本地磁盘,例如hdfs,例如mysql等等
insert overwrite local directory '/export/servers/exporthive' select * from score;
insert overwrite local directory '/export/servers/exporthive' row format delimited fields terminated by '\t' collection items terminated by '#' select * from student;
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 score6;
清空这个表会报错
本次的分享就到这里了,
看 完 就 赞 , 养 成 习 惯 ! ! ! \color{#FF0000}{看完就赞,养成习惯!!!} 看完就赞,养成习惯!!!^ _ ^ ❤️ ❤️ ❤️
码字不易,大家的支持就是我坚持下去的动力。点赞后不要忘了关注我哦!