Hive-day04-DML语句-数据导出

1:Insert导出

        1.1:将查询的结果导出到本地

hive (default)> insert overwrite local directory
'/opt/hive/data/export/student'
select * from student;

        1.2:将查询的结果格式化导出到本地

hive(default)>insert overwrite local directory
'/opt/hive/data/export/student1'
ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t'
select * from student;

        1.3:将查询的结果导出到hdfs上,没有local,没有local就是在hdfs,有local就是本地

hive (default)> insert overwrite directory '/user/atguigu/student2'
ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t'
select * from student;

2:Hadoop命令导出到本地

hive (default)> dfs -get /user/hive/warehouse/student/student.txt
/opt/module/data/export/student3.

3:Hive Shell命令导出

[atguigu@hadoop102 hive]$ bin/hive -e 'select * from default.student;' >
/opt/hive/data/export/student4.txt;

4:export导出到hdfs上

(defahiveult)> export table default.student   这个表不能存在,
to '/user/hive/warehouse/export/student';     这个路径可以自动创建

import的问题,一是路径必须是export对应的路径,二是表要么不存在要么是空表

5:sqoop导出

6:清除表中数据(Truncate)

hive (default)> truncate table student;

Truncate只能删除内部表,不能删除外部表中数据,Truncate只删hdfs数据,不删除元数据

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

总会有天明

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值