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: There is DDL statements which use rollback segments

Re: There is DDL statements which use rollback segments

From: Jonathan Lewis <jonathan_at_jlcomp.demon.co.uk>
Date: Tue, 3 Oct 2000 19:20:08 +0100
Message-ID: <970598165.15505.1.nnrp-10.9e984b29@news.demon.co.uk>

Option 1:

    don't use 'alter table --- drop column' it's a bad idea.

Option 2:

    Use COMMIT 10000 to make the 'transaction' commit     after cleaning up every 10,000 rows. This will keep     Oracle switching rollback segments very 10,000 rows.     The drawback is that this encourages ORA-01555 on     any other long-running processes if the number of     rows in the table is very large.

--

Jonathan Lewis
Yet another Oracle-related web site:  http://www.jlcomp.demon.co.uk

Dmitry Rusakov wrote in message <8rcf9m$2bai$1_at_storm.comstar.ru>...

>such as alter table ... drop column. I'm see rollback segment size
>increasing while processing this DDL. I get message about impossibility
>rollback size increasing.
>
>
>
Received on Tue Oct 03 2000 - 13:20:08 CDT

Original text of this message

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