当前位置:   article > 正文

hive导出数据的7种方式_hive数据导出命令

hive数据导出命令

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

insert导出

将查询的结果导出到本地

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

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

insert overwrite local directory '/export/servers/exporthive' row format delimited fields terminated by '分隔符' collection items terminated by '#' select * from 表名;
  • 1

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

将查询的结果导出到HDFS上(没有local)

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

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

Hadoop命令导出到本地

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

hive shell 命令导出

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

export导出到HDFS上(全表导出)

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

sqoop导出

关注我博客 sqoop 专栏 里面有

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/577402
推荐阅读
相关标签
  

闽ICP备14008679号