Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: How to check corruption in system tablespace

Re: How to check corruption in system tablespace

From: David Fitzjarrell <oratune_at_aol.com>
Date: Fri, 17 Nov 2000 21:14:20 GMT
Message-ID: <8v4734$6rg$1@nnrp1.deja.com>

In our last gripping episode ashish25_at_my-deja.com wrote:
> Hi,
> How to check that no data dictionary table or index is corrupted?
> I ran dbv on system tablespace datafile and that came OK.
> Thanks,
> Ashish
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
>

As a start:

select owner, object_name, status
from dba_objects

where object_type = 'TABLE'
and owner like 'SYS%'
and status <> 'VALID';

You can query for indexes as well.

--
David Fitzjarrell
Oracle Certified DBA


Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Fri Nov 17 2000 - 15:14:20 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US