1. 清空临时表

load data local inpath '/dev/null' overwrite into table TMP_METRICS_FLOW_LOG_DETAIL;

2. 插入数据

alter table web_user_view_stat drop partition(dt='${loadDate}');
alter table web_user_view_stat add partition(dt='${loadDate}');

insert overwrite table web_pv_log_detail3 partition (dt='${loadDate}') select...

posted on 2013-01-15 16:24  风生水起  阅读(419)  评论(0编辑  收藏  举报