美文网首页
从本地文件系统中导入数据到hive表

从本地文件系统中导入数据到hive表

作者: felix_feng | 来源:发表于2016-08-24 09:54 被阅读184次

(1)数据准备(/home/sopdm/test.dat):

1,wyp,25,13188888888

2,test,30,13899999999

3,zs,34,89931412

(2)首先创建表

use sopdm;

drop table if exists sopdm.wyp;

create table if not exists sopdm.wyp(id int,name string,age int,tel string)

row format delimited

fields terminated by ','

stored as textfile;

从本地文件系统中导入数据到Hive表

load datalocalinpath ‘/home/sopdm/test.dat’ into table sopdm.wyp;

从HDFS上导入数据到Hive表

load data inpath ‘/user/sopdm/input/test_hdfs.dat’ into table sopdm.wyp;

从别的Hive表中导入数据到Hive表中

create table if not exists sopdm.wyp2(id int,name string,tel string)

row format delimited

fields terminated by ','

stored as textfile;

--overwrite是覆盖,into是追加

insertintotable sopdm.wyp2

select id,name,tel from sopdm.wyp;

--多表插入

--高效方式-查询语句插入多个分区

from sopdm.wyp w

insert overwrite table sopdm.wyp2

select w.id,w.name,w.tel where w.age=25

insert overwrite table sopdm.wyp2

select w.id,w.name,w.tel where w.age=27;

4.创建Hive表的同时导入查询数据

create table sopdm.wyp3

asselect id,name,tel,age from sopdm.wyp where age=25;

相关文章

  • Hive中导入数据和导出数据

    一、向Hive导入数据 先在Hive里面创建好表,如下: 1、从本地文件系统中导入数据到Hive表 本地文件系统里...

  • Hive的几种数据导入方式

    1.从本地文件系统导入数据到Hive表中 load data local inpath "/path/to/dir...

  • 9. Hive使用

    1.Hive数据导入的六种类型: 以下面两个表来实验: 1.从本地文件系统导入到hive表中: 使用load da...

  • 导入数据到hive表中的6种方式

    数据导入六种方式 1、加载本地文件到hive表 语法 2、加载hdfs文件到hive中 3、加载数据覆盖表中已有的...

  • hive 常用导入/导出

    首先列出讲述下面几种导入方式的数据和hive表。 从本地导入数据首先需要创建hive 表load data loc...

  • Hive中表数据的导入导出和查询

    Hive表数据的导入 从本地导入 load data local inpath 'local_path' into...

  • FAILED: SemanticException Please

    导入本地文件数据到hive中创建的分桶表时报错: 解决办法: 导入一个新建的中间表,字段和分桶表一致,然后导入数据...

  • 从本地文件系统中导入数据到hive表

    (1)数据准备(/home/sopdm/test.dat): 1,wyp,25,13188888888 2,tes...

  • Hive导数

    hive导数有多种方式 hdfs 导入 本地导入这里主要讲本地导入 1.导出表 导出到csv 文件中再传输文件到指...

  • sqoop常用命令

    查看Mysql表 1.mysql to hdfs 2.把MySQL数据库中的表数据导入到Hive中 2.1 导入关...

网友评论

      本文标题:从本地文件系统中导入数据到hive表

      本文链接:https://www.haomeiwen.com/subject/upnnsttx.html