Link to home
Start Free TrialLog in
Avatar of ajaybelde
ajaybeldeFlag for United States of America

asked on

users can not login into the database

Enter user-name: ap@IAQ
Enter password:
ERROR:
ORA-00604: error occurred at recursive SQL level 1
ORA-01552: cannot use system rollback segment for non-system tablespace 'TOOLS'
ORA-06512: at line 6


They are getting this error

please provide me with some solution.
Avatar of Sean Stuber
Sean Stuber

you need to create an undo (rollback) tablespace


for example....

CREATE UNTO TABLESPCE YOUR_UNDO DATAFILE '/your/path/undo.dbf' SIZE 300M AUTOEXEND ON NEXT 100M MAXSIZE UNLIMITED
ONLINE RETENTION NOGUARANTEE BLOCKSIZE 8K FLASHBACK ON;


adjust path, sizing and other parameters as appropriate for your instance
ASKER CERTIFIED SOLUTION
Avatar of schwertner
schwertner
Flag of Antarctica image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Before you just create a new undo tablespace:

What happened since the last time the database 'worked'?