Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Identifying the content of a corrupted block in system tablespace
An export usually isolates the problem object.
And if its valuable data buy support as Oracle Support=20
have helped me out of a similar problem with a hack or two.
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Powell, Mark D
Sent: 07 January 2005 16:20
To: oracle-l_at_freelists.org
Subject: RE: Identifying the content of a corrupted block in system
tablespace
If you are lucky the corruption is limited to row data rather than block header/overhead entries and if so dropping the corrupt object and recreating it may well work. I know because I have lived through this experience where the base table for sequences was corrupted, but c_obj# is a cluster and there are around 16 tables assigned to it on my 9.2.0.5 system so your fiend may not be so lucky.
Try dumping the block to see what a block dump shows.
You could try a select * from each table in the cluster and see how many of them error off. If only one or two of the selects fail then you can look for PK on these tables and use a pl/sql routine to fetch each row by PK and trap errors. This would find you the row(s) affected by the corruption.
If nothing else this would give you more data to provide support.
HTH -- Mark D Powell --
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Vlado Barun
Sent: Thursday, January 06, 2005 9:24 PM
To: oracle-l_at_freelists.org
Subject: Identifying the content of a corrupted block in system
tablespace
I have a corrupted block in the system tablespace.=20
I used the standard query to identify the object that the block but it
failed:
=20
SQL>=20
1 SELECT segment_name
2 , segment_type 3 , owner 4 , tablespace_name 5 , block_id 6 , blocks
*
ERROR at line 7:
ORA-01578: ORACLE data block corrupted (file # 1, block # 8002)
ORA-01110: data file 1: '/u100/oradata/fstst/system01.dbf'
=20
Then I did this:
ALTER SESSION SET EVENTS '10231 TRACE NAME CONTEXT FOREVER, LEVEL 10';
=20
select owner
, segment_name , segment_type , tablespace_name , block_id , blocks
select max(block_id) from dba_extents where file_id=3D1 and block_id <=3D 8002
----- ------------ ------------ ---------------- -------- ------ SYS C_OBJ# CLUSTER SYSTEM 7978 25
Vlado Barun, M.Sc.
Mobile: 865 335 7652
AIM: vbarun2
-- http://www.freelists.org/webpage/oracle-l -- http://www.freelists.org/webpage/oracle-lReceived on Fri Jan 07 2005 - 10:35:51 CST
![]() |
![]() |