Previous Topic: 10077 NO. Times Deferred Write Threshold Buffer 0

Next Topic: 10079 Prefetch Disabled No Read Engine Buffer 1

10078 NO. Times WPHFWT Threshold Reached Buffer 0


FILE:  DB2 Data Base 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 that a
WPHFWT threshold was reached for buffer pool 0.

RATIONALE:  This exception tracks the WPHFWT threshold for
buffer pool 0.

DEFINITION:  This exception is noted when the DSDDMCT0 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:  10078                                */
/* TITLE:  NO. TIMES WPHFWT THRESHOLD REACHED              */
/* FILE:  DB2DSD01                                         */
/* *********************************************************/

IF DSDDMCT0 GT 0 THEN DO;
 EXCCODE='10078';
 SEVERITY='W';
 MGMTAREA='PERFORMANCE';
 EXCDESC1='NO.  TIMES WPHFWT THRESHOLD REACHED';
 EXCDESC2='BUFFER 0 '                 ||
          '   '                       ||
          'COUNT = '                  ||
           PUT(DSDDMCT0,6.)
           ;
 LINK HIT;
 END;