Previous Topic: 10086 NO. Times Write Engine Unavailable Buffer 2

Next Topic: 10088 NO. Times WPHFWT Threshold Reached Buffer 2

10087 NO. Times Deferred Write Threshold Buffer 2


FILE:  DB2 Database Activity File
SAS FILE NAME:  DETAIL.DB2DSD01
SOURCE LOCATION:  prefix.MICS.SOURCE(DB2DYEXC)

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

PURPOSE:  This exception provides the number of times the
deferred write threshold was reached for buffer pool 2.

RATIONALE:  This exception tracks the deferred write
threshold reached for this buffer pool.

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

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

/* *********************************************************/
/* EXCEPTION NUMBER:  10087                                */
/* TITLE:  NO. TIMES DEFERRED WRITE THRESHOLD REACHED      */
/* FILE:  DB2DSD01                                         */
/* *********************************************************/

IF DSDDWRT2 GT 0 THEN DO;
 EXCCODE='10087';
 SEVERITY='W';
 MGMTAREA='PERFORMANCE';
 EXCDESC1='NO. TIMES DEFERRED WRITE THRESHOLD REACHED';
 EXCDESC2='BUFFER 2 '                 ||
          '   '                       ||
          'COUNT = '                  ||
           PUT(DSDDWRT2,6.)
           ;
 LINK HIT;
 END;