Previous Topic: 10033 Short On Storage Abend

Next Topic: 10041 ICF Checkpoints Taken

10040 Reads Delayed Archive Allocation


FILE:  DB2 System Activity File
SAS FILE NAME:  DETAIL.DB2DSY01
SOURCE LOCATION:  sharedprefix.MICS.SOURCE(DB2DYEXC)

SEVERITY:  Warning              (Severity='W')
MANAGEMENT AREA:  Performance   (MGMTAREA='Performance')

PURPOSE:   This exception warns that reads were delayed
because the archived allocation limit was reached.

RATIONALE:

DEFINITION:  This exception is noted when the DSYRDAA flag is
non-zero.

EXCEPTION STATEMENTS:    The SAS statements identifying the
exception situation and describing the condition are stored
in the source member named in SOURCE LOCATION and are
described below:


/* ***************************************** */
/* EXCEPTION NUMBER:  10040                  */
/* TITLE:  READS DELAYED ARCHIVE ALLOCATION  */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYRDAA GT 0 THEN DO;
  EXCCODE='10040';
  SEVERITY='W';
  MGMTAREA='PERFORMANCE';
  EXCDESC1='READS DELAYED ARCHIVE ALLOCATION';
  EXCDESC2='COUNT = '                  ||
            PUT(DSYRDAA,6.)
            ;
  LINK HIT;
  END;