Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ORA-01650 1

Status
Not open for further replies.

jestrada101

Technical User
Mar 28, 2003
332
ORA-01650: unable to extend rollback segment R03 by 64 in tablespace RBS03

Would adding more space resolve this?
 
Yes, but what if next time you execute the SQL, it uses a different rollback segment (like R04)?

If you create a BIG rollback segment, you can force it's use by one of the following:
Code:
SET TRANSACTION USE ROLLBACK SEGMENT RBIG;
-- Or within a PL/SQL Block:
...
DBMS_TRANSACTION.USE_ROLLBACK_SEGMENT(RBIG);
...
[3eyes]
Note: The "SET TRANSACTION" must follow a "COMMIT;" and precede the Statement to use the specified rollback segment.




----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
I'm getting the failure when doing an import. HOw can I tell it to use my big RBS?

Thansk!
 


Or you can use the COMMIT=Y import option (parameter). [2thumbsup]



----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top