Previous Topic: 10083 NO. Times WPHFWT Threshold Reached Buffer 1

Next Topic: 10085 Prefetch Disabled No Read Engine Buffer 2

10084 Prefetch Disabled No Read Engine Buffer 2


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 buffer
resource.  In this case, the buffer resource comes from
buffer pool 2.

RATIONALE:  This exception tracks the number of times buffer
pool 2 could not provide a buffer to perform a DB2 function.
It is very useful in determining number of buffers needed for
this pool.

DEFINITION:  This exception is noted when the DSDSPDF2 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:  10084                          */
/* TITLE:  PREFETCH REQUEST DISABLED DUE TO NO BUFFERS*/
/* FILE:  DB2DSD01                                   */
/* ***************************************************/

IF DSDSPDF2 GT 0 THEN DO;
 EXCCODE='10084';
 SEVERITY='W';
 MGMTAREA='PERFORMANCE';
 EXCDESC1='PREFETCH REQUEST DISABLED NO BUFFERS';
 EXCDESC2='BUFFER 2 '                 ||
          '   '                       ||
          'COUNT = '                  ||
           PUT(DSDSPDF2,6.)
           ;
 LINK HIT;
 END;