Hi,
Daily 3 million records are INSERT'd into table BIGTABLE.
At month-end data from this table is INSERT'd into another table and then BIGTABLE is TRUNCATE'd.
The TRUNCATE takes 3-4 hours.
BIGTABLE
---------
Field1 Varchar2
Field2 Date
Field3 Number
I'd like to know if significant time can be saved if TRUNCATE TABLE BIGTABLE REUSE STORAGE is used.
If not, is there a better approach to quickly empty this table?