Member since
09-26-2017
1
Post
0
Kudos Received
0
Solutions
09-26-2017
11:33 PM
how would you suggest doing the red parts with zero downtime? (= table1 partition_key=1 is always available) create table table2 like table1; insert into table2 select * from table1 where partition_key=1; alter table table1 drop partition (partition_key=1); insert into table1 partition(partition_key=1) select * from table2; drop table table2;
... View more