Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Rollback Segment Too Old !!!!!!!
The ORA-1555 is a read consistency error. The information from the rollback segments needed to create a read-consistent view of the data is not available. Usually because the information has been overwritten or the extents containing this information have been deallocated (e.g. if optimal is set).
Until 9i, where you can use automatic undo to avoid these errors, the best way is to create dummy transcations in each of the online RBS's before starting the export and leave them uncomitted until the export completes. This will prevent the rollback segments from wrapping around and overwriting the extents that contained uncomitted transactions when the export began. Of course this means you're likely to generate a lot more rollback than usual so you'll need to monitor the space in the RBS tablespaces to avoid getting extent allocation errors.
Check Steve Adams' site for a set of scripts to assist
you with this:
http://www.ixora.com.au
Scripts > Rollback Segments
HTH,
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: A. Bardeen INET: abardeen1_at_yahoo.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 Mon Nov 19 2001 - 12:49:53 CST
![]() |
![]() |