Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 2300

Re: 2 billion row limit?

$
0
0

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


Viewing all articles
Browse latest Browse all 2300

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>