Hi everyone,
I got a problem and hopefully, someone can help me out. I got the following error message in SQL Plus:
ERROR at line 1:
ORA-01562: failed to extend rollback segment number 5
ORA-01628: max # extents (505) reached for rollback segment R05
I thought I had figure out how to fix the problem as follows:
ALTER ROLLBACK SEGMENT R05
STORAGE (MAXEXTENTS unlimited);
But THEN, I got this message:
ERROR at line 1:
ORA-01557: rollback segment extents must be at least 4 blocks
Now, I don't understand. Isn't Unlimited the highest value I can put here? If I put 505 instead, it accepts it. Here is the table of my rollbacks. I haven't modified them yet. How can I fix this problem??
SEG_NAME INIT_EXTENT NEXT_EXTENT MIN_EXTENTS MAX_EXTENTS
-------- ----------- ----------- ----------- -----------
SYSTEM 57344 57344 2 505
R05 24576 24576 20 505
R06 24576 24576 20 505
R07 24576 24576 20 505
R08 24576 24576 20 505
Hope someone can help me understand this! Thanks a whole lot.
daph
I got a problem and hopefully, someone can help me out. I got the following error message in SQL Plus:
ERROR at line 1:
ORA-01562: failed to extend rollback segment number 5
ORA-01628: max # extents (505) reached for rollback segment R05
I thought I had figure out how to fix the problem as follows:
ALTER ROLLBACK SEGMENT R05
STORAGE (MAXEXTENTS unlimited);
But THEN, I got this message:
ERROR at line 1:
ORA-01557: rollback segment extents must be at least 4 blocks
Now, I don't understand. Isn't Unlimited the highest value I can put here? If I put 505 instead, it accepts it. Here is the table of my rollbacks. I haven't modified them yet. How can I fix this problem??
SEG_NAME INIT_EXTENT NEXT_EXTENT MIN_EXTENTS MAX_EXTENTS
-------- ----------- ----------- ----------- -----------
SYSTEM 57344 57344 2 505
R05 24576 24576 20 505
R06 24576 24576 20 505
R07 24576 24576 20 505
R08 24576 24576 20 505
Hope someone can help me understand this! Thanks a whole lot.
daph