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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Unsetting OPTIMAL in rollback segments

Re: Unsetting OPTIMAL in rollback segments

From: Robert Pegram <pegramrg_at_yahoo.com>
Date: Wed, 15 May 2002 09:38:40 -0800
Message-ID: <F001.004614D8.20020515093840@fatcity.com>


Just tested this on 8.1.7.0.

alter rollback segment rbs0 storage(optimal null);

Rob Pegram
Oracle Certified DBA


SQL> select segment_name, optsize
  2 from dba_rollback_segs, v$rollstat
  3 where usn=segment_id;

SEGMENT_NAME                      OPTSIZE
------------------------------ ----------
SYSTEM
RBS0                              4194304
RBS1                              4194304
RBS2                              4194304
RBS3                              4194304
RBS4                              4194304
RBS5                              4194304
RBS6                              4194304

8 rows selected.

SQL> alter rollback segment rbs0 storage(optimal null);

Rollback segment altered.

SQL> select segment_name, optsize
  2 from dba_rollback_segs, v$rollstat   3 where usn=segment_id;

SEGMENT_NAME                      OPTSIZE
------------------------------ ----------
SYSTEM
RBS0
RBS1                              4194304
RBS2                              4194304
RBS3                              4194304
RBS4                              4194304
RBS5                              4194304
RBS6                              4194304

8 rows selected.


Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robert Pegram
  INET: pegramrg_at_yahoo.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Wed May 15 2002 - 12:38:40 CDT

Original text of this message

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