Previous Topic: 10078 NO. Times WPHFWT Threshold Reached Buffer 0

Next Topic: 10080 Prefetch Disabled No Read Engine Buffer  1

10079 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 request disabled because of an unavailable buffer
resource.  In this case, the buffer resource comes from
buffer pool 1.

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

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

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