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: ALTER ROLLBACK SEGMENT rbs SHRINK

RE: ALTER ROLLBACK SEGMENT rbs SHRINK

From: Johnston, Tim <TJohnston_at_quallaby.com>
Date: Wed, 30 Jan 2002 11:14:53 -0800
Message-ID: <F001.00400E76.20020130111049@fatcity.com>

Sure sure... Make me look again...

:-)

SQL> select segment_name, min_extents, initial_extent, next_extent   2 from dba_segments
  3 where segment_name = 'RBS06';

SEGMENT_NAME                   MIN_EXTENTS INITIAL_EXTENT NEXT_EXTENT
------------------------------ ----------- -------------- -----------
RBS06                                   20        1048576     1048576

SQL> select rs.extents, rs.rssize/1048576 , rs.optsize/1048576   2 from dba_rollback_segs drs,
  3 v$rollstat rs
  4 where drs.segment_name = 'RBS06'
  5 and drs.segment_id = rs.usn;

   EXTENTS RS.RSSIZE/1048576 RS.OPTSIZE/1048576

---------- ----------------- ------------------
        21           21.3125                 21

SQL> alter rollback segment RBS06 shrink to 10M;

Rollback segment altered.

SQL> select segment_name, min_extents, initial_extent, next_extent   2 from dba_segments
  3 where segment_name = 'RBS06';

SEGMENT_NAME                   MIN_EXTENTS INITIAL_EXTENT NEXT_EXTENT
------------------------------ ----------- -------------- -----------
RBS06                                   20        1048576     1048576

SQL> select rs.extents, rs.rssize, rs.optsize   2 from dba_rollback_segs drs,
  3 v$rollstat rs
  4 where drs.segment_name = 'RBS06'
  5 and drs.segment_id = rs.usn;

   EXTENTS RSSIZE OPTSIZE
---------- ---------- ----------

        10 10633216 22020096

Interesting eh? Doesn't seem like this should work this way but it does...

Again... YMMV... 8.1.7.3 on Solaris...

Tim

-----Original Message-----
Sent: Wednesday, January 30, 2002 1:35 PM To: Multiple recipients of list ORACLE-L

what are the minimum extents on the rollback segments (specifically r03) as well as initial and next sizes please?

If optimal is higher than the minimum extents, you're right, it can shrink down to minimum extents*initial

but it doesn't make a lot of sense to set things up that way


Do You Yahoo!?
Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Rachel Carmichael
  INET: wisernet100_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).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Johnston, Tim
  INET: TJohnston_at_quallaby.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 Jan 30 2002 - 13:14:53 CST

Original text of this message

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