Previous Topic: 10079 Prefetch Disabled No Read Engine Buffer 1

Next Topic: 10081 NO. Times Write Engine Unavailable Buffer 1

10080 Prefetch Disabled No Read Engine Buffer 1


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 sequential
prefetch requests disabled because of an unavailable read
engine.  In this case, buffer pool 1 could not get a read
engine.

RATIONALE:  Because prefetch provides for improved
performance in situations requiring large amounts of
sequential processing, it is important to know when and why
this function could not be performed.

DEFINITION:  This exception is noted when the DSDREEP1 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:  10080                          */
/* TITLE:  PREFETCH REQUEST DISABLED DUE NO READ ENGINE*/
/* FILE:  DB2DSD01                                   */
/* ***************************************************/

IF DSDREEP1 GT 0 THEN DO;
 EXCCODE='10080';
 SEVERITY='W';
 MGMTAREA='PERFORMANCE';
 EXCDESC1='PREFETCH REQUEST DISABLED NO READ ENGINES';
 EXCDESC2='BUFFER 1 '                 ||
          '   '                       ||
          'COUNT = '                  ||
           PUT(DSDREEP1,6.)
           ;
 LINK HIT;
 END;