nobleit
asked on
performance
in order to improve performance on an insert statement that places millions of rows
into that table what steps can be done..
into that table what steps can be done..
hi
you can use NOLOGGING
you can use APPEND
you can use DIRECT PATH with SQLLDR
you can use NOLOGGING
you can use APPEND
you can use DIRECT PATH with SQLLDR
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
another table? another db? file? VALUES coded?
that part might be optimizable ...
anything else is about the target table:
does it have indexes ? yes => are they on a dedicated tablespace?
does it have INSERT triggers? yes => could they be deactivated for this big insert?
is the table partitioned?
and a couple of others.