码迷,mamicode.com
首页 > 其他好文 > 详细

hive自动加载分区

时间:2020-04-16 22:38:02      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:tab   max   str   sub   sele   set   table   ons   mode   

hive -e ‘
use bd;
set  hive.exec.max.dynamic.partitions.pernode=100;
set hive.exec.dynamici.partition=true;
set hive.exec.dynamic.partition.mode=nonstrict;
insert overwrite table ods_ticket
partition(sale_day)
select * from (select *,substr(sale_time,0,10) from tmp_ods_ticket where substr(sale_time,0,10) > "2020-01-25")t ;‘

 

hive自动加载分区

标签:tab   max   str   sub   sele   set   table   ons   mode   

原文地址:https://www.cnblogs.com/students/p/12703250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!