Undo tablespace offline and ORA-00376 2006-03-16 - By Riyaj Shamsudeen
Is it possible that few blocks of abc_stage table is not clean ? Meaning block clean out is not complete for those blocks ? Oracle might be trying to check whether the pending transactions in those blocks are committed or not, by accessing the old undo segment header. Since undo tablespace is offline, this error is thrown.
BTW check whether sys.undo$ table has entries for those old undo segments.
To confirm you could trace (10046) the statement, find the block read just before this error, dump the block to see whether any ITL entries pointing to old undo segments.
Better yet, you could just alter the tablespace online, create index and then drop the undo tablespace.
Thanks Riyaj "Re-yas" Shamsudeen Certified Oracle DBA (ver 7.0 - 9i) Allocation & Assortment planning systems JCPenney
"No implied or explicit liability"
Sami Seerangan wrote: > 2 Node RAC,9.2.0.6, Sun OS 2.8 > > We created new undo tablespaces (UNDO3, UNDO4) for each node1 and > node2 respectively and changed default undo tablespace to UNDO3 and > UNDO4. Then we put old UNDO tablespaces offline. > > After 2 days we are trying to create a new index and it gives the > following error. > > Any idea? > > SQL> CREATE UNIQUE INDEX ABC_KEY_IDX01 ON ABC_STAGE (SESSN_KEY, > PART_KEY,SUB_PART_KEY) TABLESPACE STAGE_INDEX LOCAL NOPARALLEL; > * > ERROR at line 1: > ORA-00604 (See ORA-00604.ora-code.com): error occurred at recursive SQL level 1 > ORA-00376 (See ORA-00376.ora-code.com): file 2 cannot be read at this time > ORA-01110 (See ORA-01110.ora-code.com): data file 2: '/u01/oradata/pdw/undotbs01.dbf' > > > Luckily the tablespace is still offline and I can bring it online. But > I just wanted to know teh reason behind this? > > > Thanks > Sami > -- > http://www.freelists.org/webpage/oracle-l > > > >
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#3333ff"> Is it possible that few blocks of abc_stage table is not clean ? Meaning block clean out is not complete for those blocks ? Oracle might be trying to check whether the pending transactions in those blocks are committed or not, by accessing the old undo segment header. Since undo tablespace is offline, this error is thrown.<br> <br> BTW check whether sys.undo$ table has entries for those old undo segments.<br> <br> To confirm you could trace (10046) the statement, find the block read just before this error, dump the block to see whether any ITL entries pointing to old undo segments. <br> <br> Better yet, you could just alter the tablespace online, create index and then drop the undo tablespace.<br> <pre class="moz-signature" cols="72">Thanks Riyaj "Re-yas" Shamsudeen Certified Oracle DBA (ver 7.0 - 9i) Allocation & Assortment planning systems JCPenney
"No implied or explicit liability" </pre> <br> <br> Sami Seerangan wrote: <blockquote cite="midf09dd6280603161325h14871c42s699e15b9b4b7e29e@(protected)" type="cite"> <pre wrap="">2 Node RAC,9.2.0.6, Sun OS 2.8
We created new undo tablespaces (UNDO3, UNDO4) for each node1 and node2 respectively and changed default undo tablespace to UNDO3 and UNDO4. Then we put old UNDO tablespaces offline.
After 2 days we are trying to create a new index and it gives the following error.
Any idea?
SQL> CREATE UNIQUE INDEX ABC_KEY_IDX01 ON ABC_STAGE (SESSN_KEY, PART_KEY,SUB_PART_KEY) TABLESPACE STAGE_INDEX LOCAL NOPARALLEL; * ERROR at line 1: ORA-00604 (See ORA-00604.ora-code.com): error occurred at recursive SQL level 1 ORA-00376 (See ORA-00376.ora-code.com): file 2 cannot be read at this time ORA-01110 (See ORA-01110.ora-code.com): data file 2: '/u01/oradata/pdw/undotbs01.dbf'
Luckily the tablespace is still offline and I can bring it online. But I just wanted to know teh reason behind this?
Thanks Sami -- <a class="moz-txt-link-freetext" href="http://www.freelists.org/webpage/oracle -l">http://www.freelists.org/webpage/oracle-l</a>
</pre> </blockquote> <br> </body> </html>
The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. If the reader of this message is not the intended recipient, you are hereby notified that your access is unauthorized, and any review, dissemination, distribution or copying of this message including any attachments is strictly prohibited. If you are not the intended recipient, please contact the sender and delete the material from any computer.
|
|