Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: SQL*Loader on steroids

Re: SQL*Loader on steroids

From: <sybrandb_at_hccnet.nl>
Date: Sun, 01 Apr 2007 16:11:46 +0200
Message-ID: <v9fv039cbbulbfoa9cmlo6cfumf6uugder@4ax.com>


On 1 Apr 2007 00:16:49 -0700, "dombrooks" <dombrooks_at_hotmail.com> wrote:

>Direct path should realise some significant gains, however there are
>certain restrictions.
>
>It might be that you'd have to re-arrange processing a little, so that
>you use direct path to load up into staging tables as quickly as
>possible and the do the processing / data cleansing using bulk
>operations.

Excellent remark. It is also very important to avoid checks in a loop. It is better to
update foo
set status = 'E'
where <somecheck>

and finally issue
insert into production_table
select * from foo

-- 

Sybrand Bakker
Senior Oracle DBA
Received on Sun Apr 01 2007 - 09:11:46 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US