ORA-1555 Famous Snapshot-Error [message #140105] |
Fri, 30 September 2005 19:32 |
hexmanju
Messages: 78 Registered: September 2005 Location: MUMBAI
|
Member |
|
|
Hi
Hey
Can Someone help me rectify this error...
ORA-01555: snapshot too old: rollback segment number 8 with name
"_SYSSMU8$" too small
EXP-00008: ORACLE error 1555 encountered
EXP-00000: Export terminated unsuccessfully
I had actually scheduled an export backup........Script has been written by the previous DBA..Well i would be very much helped if someone knows the solution to this and could provide me a step by step(Queries will be very helpful)solution.
Thanks
Manjunath
|
|
|
|
|
|
|
|
Re: ORA-1555 Famous Snapshot-Error [message #140147 is a reply to message #140136] |
Sat, 01 October 2005 07:22 |
William Robertson
Messages: 1643 Registered: August 2003 Location: London, UK
|
Senior Member |
|
|
Oracle version and script details would be helpful here.
This is a bit of a guess, but you could try DIRECT=Y, the idea being that the quicker you can dump data out of the database the less time it has to maintain a read-consistent snapshot.
Also, are other sessions updating the tables while they are being exported?
You could also look at the setting of UNDO_RETENTION, assuming you are on 9i or later.
|
|
|
Re: ORA-1555 Famous Snapshot-Error [message #142491 is a reply to message #140105] |
Fri, 14 October 2005 17:17 |
hexmanju
Messages: 78 Registered: September 2005 Location: MUMBAI
|
Member |
|
|
Hi
Thanks a Lot every body for all your suggestions...
I did the following to rectify the error...
Made all existing RBS's to be offline and created a Big RBS..
CREATE PUBLIC ROLLBACK SEGMENT rbs_big
TABLESPACE RBS
STORAGE (
INITIAL 10M
NEXT 10M
MINEXTENTS 5
MAXEXTENTS 100 );
Worked out...What do you think..Is it a permanent solution..
However Thanks a lot Once again..
Manju
|
|
|
Re: ORA-1555 Famous Snapshot-Error [message #142496 is a reply to message #142491] |
Fri, 14 October 2005 18:32 |
William Robertson
Messages: 1643 Registered: August 2003 Location: London, UK
|
Senior Member |
|
|
No, unless that increases your total undo resources. Maybe you just got lucky this time and nobody happened to be updating the tables you were querying.
Are other sessions updating the tables while they are being exported?
Oracle version and script details would be helpful here.
[Updated on: Mon, 17 October 2005 02:31] Report message to a moderator
|
|
|
|
|