赞
踩
1) 全同步
create table table_new as select * from table_old;
2) 部分同步(同步name,age,sex三个字段的数据)
create table table_new as
select
name,
age,
sex
from table_old
1)复制表结构
create table table_new like table_old;
2 )复制数据:
a. 第一种
insert overwrite table table_new partition(dt) select * from table_old;
b. 第二种(数据量大,推荐)
dfs -cp /user/bigdata.db/table_old/* /user/bigdata/db/bigdata_new/;
-- 拷贝完,修复分区
msck repair table table_new;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。