Hi..
Is your alert log giving some error like
For the ORA-1578 error:
ORA-01578: ORACLE data block corrupted (file # 7, block # 12698)
ORA-01110: data file 22: '/oracle1/oradata/V816/oradata/V816/users01.dbf'
If yes, then
SELECT tablespace_name, segment_type, owner, segment_name
FROM dba_extents
WHERE file_id = &AFN
and &BL between block_id AND block_id + blocks - 1
;
Where AFN= absolute file number, like for the above case it will be 7, and BL is the block number.This will give you the corrupt segment name.But, i don't think you will be getting this error.
But as you are getting ORA-12012: error on auto execute of job 8884, can you try to find what is this job. A trace file would have been generated , so find out what job it is.
Refer to
http://sap.ittoolbox.com/groups/technical-functional/sap-basis/ora-12012-error-1682082
Anand
Edited by: Anand... on Oct 16, 2008 12:54 PM