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: How to increase maxextents of ROLLBACK segment_type?

RE: How to increase maxextents of ROLLBACK segment_type?

From: <Long.Nguyen_at_csiro.au>
Date: Wed, 28 Aug 2002 16:18:23 -0800
Message-ID: <F001.004C2206.20020828161823@fatcity.com>


use "alter rolback segment <name> storage (maxextents <value>));"

you should not use system rollback for application work. Read doco on how to create non-system rollback segments.

Long

-----Original Message-----
Sent: Wednesday, 28 August 2002 8:43 PM
To: Multiple recipients of list ORACLE-L

Jonny Delmont wrote:
>
> Dear Gurus,
>
> Could you please help me out with this - I want to increase the
> maxextents of below segment.
>
> TIA,
>
> SQL> select OWNER,SEGMENT_NAME,SEGMENT_TYPE,EXTENTS,MAX_EXTENTS
> 2 from dba_segments
> 3 where ((max_extents-extents)/max_extents)*100 <40 and max_extents
> != 0
> 4 /
>
> OWNER SEGMENT_NAME SEGMENT_TYPE EXTENTS MAX_EXTENTS
> ------ --------------- ------------------ ---------- -----------
> SYS SYSTEM ROLLBACK 505 505
>
> SQL> connect sys
> Enter password:
> Connected.
> SQL> alter ROLLBACK sys.system storage (maxextents 1024);
> alter ROLLBACK sys.system storage (maxextents 1024)
> *
> ERROR at line 1:
> ORA-01902: SEGMENT keyword expected
>
> TIA
>
> Jonny
>

  1. RTF "SQL Reference" M.
  2. RTF "Concepts" M. Your SYSTEM rollback segments should not be big.

In fact, I think that you should do b) before a).

-- 
Regards,

Stephane Faroult
Oriole Software
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Stephane Faroult
  INET: sfaroult_at_oriole.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: 
  INET: Long.Nguyen_at_csiro.au

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 Aug 28 2002 - 19:18:23 CDT

Original text of this message

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