美文网首页Hive
导入数据到hive表中的6种方式

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

作者: 明明德撩码 | 来源:发表于2018-03-07 08:39 被阅读46次

    数据导入六种方式

    1、加载本地文件到hive表

    语法

    2、加载hdfs文件到hive中

    3、加载数据覆盖表中已有的数据

    4、创建表时通过select加载

    create table if not exists default.dept_cats
    as select * from dept;

    5、创建表通过insert加载

    6、创建表的时候通过location指定加载

    外部表方式
    create external table if not exists emp_partition(
    empno int,
    ename string,
    job string,
    mgr int,
    hiredate string,
    sal double,
    comm double,
    deptno int
    )
    partitioned by (month string)
    row format delimited fields terminated by '\t'

    load data local inpath '/opt/datas/emp.txt' into table default.emp_partition partition (month='201803');

    这样就可以直接访问。

    相关文章

      网友评论

        本文标题:导入数据到hive表中的6种方式

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