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: can I update data without using rollback segment?

Re: can I update data without using rollback segment?

From: Tom Best <tom.best_at_bentley.com>
Date: 2000/08/07
Message-ID: <8mmjmr$fj4$1@news.bentley.com>#1/1

You could do this:

    alter table <tablename> nologging

then do you updates, and then:

    alter table <tablename> logging

But be aware that that affects all sessions modifying that table.

HTH,
Tom Best

<wy_at_fudan.edu> wrote in message news:8mmgt1$2jo$1_at_nnrp1.deja.com...
> when I update large data,it always raise rollback segment has reach the
> max extends.
> I know I can specify a larger rollback segment to the transaction.
> but I think it also cost a lot.
> sometime I want to update the data without using rollback segment or I
> don't need do it in a transaction.
>
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Received on Mon Aug 07 2000 - 00:00:00 CDT

Original text of this message

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