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: Rollback and Large Transactions

Re: Rollback and Large Transactions

From: Connor McDonald <connor_mcdonald_at_yahoo.com>
Date: 2000/04/11
Message-ID: <38F3262C.3E4F@yahoo.com>#1/1

fastnet wrote:
>
> Hey all i have a quick question for you...
>
> Basically we are running into an issue with a rollback segment filling up on
> a large bulk transaction (batch job in the middle of the night that is
> basically a insert into table select * deal).
>
> Basically Im wondering is there a way to run this job without using a
> rollback segment at all??. In this instance we dont need it cause we
> truncate the destination initially.
>
> tia
>
> me

Try

  1. alter table xxx nologging
  2. insert /*+ APPEND */ into xxx select * from yyy

and have a read on direct-load insert and parallel dml.

HTH

-- 
===========================================
Connor McDonald
http://www.oracledba.co.uk

We are born naked, wet and hungry...then things get worse
Received on Tue Apr 11 2000 - 00:00:00 CDT

Original text of this message

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