Thanks for your message, Seb.
Not sure, what you mean. Statements 1 and 2 do not refer to writing the table so I guess you refer to statement 3.
When I first create a partitioned structure of the table, I can fill it with more than 2 billion rows. But only if this is done in several steps. I.e. the following works:
create column table MYTAB (
...
) partition by roundrobin partitions 8;
insert into MYTAB (
select * from T1
);
insert into MYTAB (
select * from T2
);
But not:
create column table MYTAB (
...
) partition by roundrobin partitions 8;
insert into MYTAB (
select * from T
);
mapkyc