Hi All,
I am on 11.2.0.3.
I need to copy 500M records from one table to another table. Both tables have NOPARALLEL marked on them (which we don't want to change) and the database is FORCE logging.
I am planning to write something on the line of
INSERT /*+ PARALLEL(32) */ INTO TABLE2 SELECT * FROM TABLE1 ;
Should I include APPEND hint along with PARALLEL in there to make it direct path?
Is there any more efficiant way to copy that data across ?
Thanks in advance