Link to home
Start Free TrialLog in
Avatar of nobleit
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..
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

where does the data for the insert come from?
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.

hi

you can use NOLOGGING
you can use APPEND
you can use DIRECT PATH with SQLLDR

ASKER CERTIFIED SOLUTION
Avatar of ajexpert
ajexpert
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial