What is Faster? Bulk Inserts/or Direct Path Insert? [message #65216] |
Tue, 15 June 2004 22:07 |
IA
Messages: 91 Registered: March 2004
|
Member |
|
|
Hi Everyone,
I am running Oracle 9i on Sun 2.9.
I have a large batch job to process. I would like to know what is faster method, using Direct Path insert via the append hint, OR,
using Bulk inserts.
Can you please assist ... Thanks... IA
|
|
|
|
|
Re: What is Faster? Bulk Inserts/or Direct Path Insert? [message #65254 is a reply to message #65216] |
Mon, 05 July 2004 13:01 |
croK
Messages: 170 Registered: April 2002
|
Senior Member |
|
|
insert APPEND is extremely fast.
Besides, try to alter table to NOLOGGING
and disable any indexes or primary key, you can then recreate it.
BULK INSERT?, is it a new feature?, i do hear about BULK COLLECT, and it is some kind of array implementation from within PL/SQL.
Best luck
|
|
|