Skip to Main Content
Oracle Distributed Systems
book

Oracle Distributed Systems

by Charles Dye
April 1999
Intermediate to advanced content levelIntermediate to advanced
552 pages
15h 39m
English
O'Reilly Media, Inc.
Content preview from Oracle Distributed Systems

invalids.sql

---------------------------------------------------------------------------
-- Filename:    invalids.sql
-- Purpose:     Lists all invalid objects and provides SQL to (attempt to)
--              repair them.
-- Author:      Chas. Dye (cdye@excitecorp.com)
-- Date:        28-Jun-1996
---------------------------------------------------------------------------
column object_name  format a25      heading "Object Name"
column status       format a7       heading "Status"
column owner        format a12      heading "Owner"
column object_type  format a12      heading "Object Type"
column created      format a20      heading "Date Created"
column fix          format a70      heading "Run these statements to repair"

SELECT  object_name, status, object_type, owner, created
FROM    dba_objects
WHERE   status != 'VALID'
/

SELECT
      'ALTER ' || 
      DECODE( object_type, 'PACKAGE BODY', 'PACKAGE', object_type) || ' ' ||
      lower(owner)||'.'|| lower(object_name) ||
      DECODE( object_type, 'PACKAGE BODY', ' COMPILE BODY;', ' COMPILE;') fix
FROM  dba_objects
WHERE object_type IN (        'FUNCTION',
                              'PACKAGE',
                              'PACKAGE BODY',
                              'PROCEDURE',
                              'TYPE',
                              'TRIGGER',
                              'VIEW'
                     )
AND   status = 'INVALID'
/
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Oracle Internals

Oracle Internals

Donald K. Burleson
Expert Oracle RAC 12c

Expert Oracle RAC 12c

Syed Jaffar Hussain, Tariq Farooq, Riyaj Shamsudeen, Kai Yu
Expert Oracle Exadata, Second Edition

Expert Oracle Exadata, Second Edition

Martin Bach, Karl Arao, Andy Colvin, Frits Hoogland, Randy Johnson, Kerry Osborne, Tanel Poder

Publisher Resources

ISBN: 1565924320Supplemental ContentCatalog PageErrata