Link to home
Create AccountLog 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
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer