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 - using direct load path with a table during others performing delete/select

Re: SQL*Loader - using direct load path with a table during others performing delete/select

From: Sybrand Bakker <gooiditweg_at_sybrandb.demon.nl>
Date: Sun, 22 Jun 2003 16:43:48 +0200
Message-ID: <b1gbfvgaog5oaabiam76j7hdbq1pdoi0da@4ax.com>


On 22 Jun 2003 05:39:05 -0700, vikingil_at_yahoo.com (viktor) wrote:

>Hi All,
>I have the following problem.
>We are using SQL*Loader in conventional mode.
>I want to use the direct mode in order to improve the performance.
>Does any one can tell me if there are any problems with the following:
>1. Issuing select / insert/ delete on the table (which has index)
>during the direct path load operation?
>2. Is the SQL loader operation is atomic from user point of view
>meaning might he receive partial data from the load during the index
>update / high-water mark update after the load is over?
>If not how can it be modified to be atomic? Should I use staging
>tables? and How do I use them - I happened to stumble about this issue
>in one article but I don't know how it works (yet :-) ).
>3. If there is no way to make SQL loader operation atomic how can user
>be prevented from accessing to the table during the load?
>4. I think users might need to remove old / bad data from time to time
>might it cause problems during direct path load operation.
>5. Any other known problems when using SQL*Loader?
>Thanks ,
>Viktor

You have just summed up about all the reasons to use staging tables Just load the data into staging tables with identical definition of the target tables. Clean up your data in the staging phase, making sure proper constraints exist on the target tables. Then just insert select and there you go.

Sybrand Bakker, Senior Oracle DBA

To reply remove -verwijderdit from my e-mail address Received on Sun Jun 22 2003 - 09:43:48 CDT

Original text of this message

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