Data Loading with partitions.
Taking advantage of partitioning for fact tables reduces index and statistics maintenance time during ETL processes.
Because the majority of inserts and updates impact the last partition(s), you only need to:
See Oracle Partition - Partition Exchange (between tables)
The below procedure
can be faster than “leaving the index in place during the load”
This is true for single partition tables (normal tables) as well as partitioned tables.
However, during the load, the indexes are “not there (not usable)” for query.