I want to make a series that registers the insertion of massive data from one table into another. This is only once as part of the data migration, so replacing partitions, etc. Not an answer.
SQL will have the following structure:
INSERT ... SELECT FROM ....
What can force Oracle to run this conditional insert rather than insert a direct path?
For example, I believe that having a trigger in a table will cause Oracle to conduct a confidential insert. Is there a final list of restrictions?
source
share