I have a few questions about optimizing this type of load.
One builds a new table of data to be loaded into a partitioned table and then builds the indexes on this new table.
Should you build the index with the COMPUTE STATISTICS option or use the Cascade option of the DBMS_Stats?
Should you gather stats on the table before the swap or on the partition after the swap?
If you do it after the swap and you specify the partition name in the parameter list, what interplay does the granularity parameter have? For instance, if I specify a partition name and then set granularity to 'GLOBAL AND PARTITION' does that do Global at all? Does it do just that one partition?