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

deferror8.sql

---------------------------------------------------------------------------
-- Filename:    deferror8.sql
-- Purpose:     Reports on deferred transaction with errors and generates
--              call to dbms_defer_sys.execute_error to clear them.
-- Author:      Chas. Dye (cdye@excitecorp.com)
-- Date:        28-Jun-1996
--
-- Modification History
-- --------------------
-- 13-Aug-1998 : Chas. : Updated for Oracle8; added commands to delete error.
-- 09-Oct-1998 : Chas. : Added ORDER BY start_time
---------------------------------------------------------------------------
column ORIGIN_TRAN_DB       heading "Origin|Tran|DB"        format a15
column DEFERRED_TRAN_ID     heading "Deferred|Tran|ID"      format a15
column DESTINATION          heading "Destination"           format a15
column ERROR_TIME           heading "Error Time"            format a22
column ERROR_NUMBER         heading "Error#"                format 999999
column FIX                  heading "Run This to Clear"     format a80
column DITCH                heading "Run This to Delete"    format a80

SELECT  deferred_tran_id,
        origin_tran_db,
        destination,
        to_char(start_time, 'DD-Mon-YYYY hh24:mi:ss') error_time,
        error_number
FROM    deferror
ORDER BY start_time
/

SELECT  'EXECUTE dbms_defer_sys.execute_error(' || chr(39) ||
        deferred_tran_id || chr(39) || ', '|| chr(39) ||
        destination || chr(39) || ' )'  fix
FROM    deferror
ORDER BY start_time
/

SELECT  'EXECUTE dbms_defer_sys.delete_error(' || chr(39) ||
        deferred_tran_id || chr(39) || ', '|| chr(39) ||
        destination || chr(39) || ' )'  ditch
FROM    deferror
ORDER BY start_time
/
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