Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: ALTER ROLLBACK SEGMENT rbs SHRINK
Here is the confirmation of what Sandeep posted: SQL> select a.usn, b.name, a.optsize
2 from v$rollstat a, v$rollname b
3 where a.usn = b.usn;
USN NAME OPTSIZE ---------- ------------------------------ ---------- 0 SYSTEM 1 RBS01 419430400 2 RBS02 419430400
SQL> alter rollback segment rbs01 shrink to 10M;
Rollback segment altered. <<<---- No error. Think it did it? Look below :(
SQL> select a.usn, b.name, a.optsize
2 from v$rollstat a, v$rollname b
3 where a.usn = b.usn;
USN NAME OPTSIZE ---------- ------------------------------ ---------- 0 SYSTEM 1 RBS01 419430400 2 RBS02 419430400
SQL>
-----Original Message-----
Sent: Wednesday, January 30, 2002 1:50 AM
To: Multiple recipients of list ORACLE-L
I don't think - it will work. You won't get any error as well as it won't shrink.
Any other inputs from others???
Rgds,
-----Original Message-----
Sent: Wednesday, January 30, 2002 9:55 AM
To: Multiple recipients of list ORACLE-L
Hi,
Assume
INITIAL * MINEXTENT = 2M and also = OPTIMAL
Do you think
ALTER ROLLBACK SEGMENT rbs SHRINK TO 1M;
will work ?
Thanks,
Sinardy
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Deshpande, Kirti
INET: kirti.deshpande_at_verizon.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 - 11:39:24 CST