Hive 创建外部分区表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hive 创建外部分区表相关的知识,希望对你有一定的参考价值。

参考技术A 1、hive 创建外部表

create external table t_ods_test (

uid string COMMENT '用户id',

terminal string COMMENT '终端类型',

adslotid string COMMENT '广告位id',

cid string COMMENT 'cid',

amount string COMMENT '库存量',

local string COMMENT '地域',

tags string COMMENT '标签' )

partitioned by (year string,month string,day string) row format delimited fields  terminated by '\t'

STORED AS TEXTFILE location '/user/qgw/hh/app/usertagview';

2、hive 外部表,增加分区

alter table t_ods_test add partition (year='2017', month='10', day='18') location '2017/10/18';

以上是关于Hive 创建外部分区表的主要内容,如果未能解决你的问题,请参考以下文章

hive 四种表,分区表,内部,外部表,桶表

使用路径中没有列名的分区创建 Hive 外部表?

删除 hive 分区外部表但保留分区

hive中创建外部分区表测试

在 hive 的外部表中创建分区

Hive表操作二(管理表外部表分区表)