Previous Topic: 10070 Read Pagefixed Without Real Storage - Pool 3

Next Topic: 10072 NO. Lock Escalations to Exclusive Mode

10071 Write Pagefixed Without Real Storage - Pool 3


FILE:  DB2 Data Base Activity File
SAS FILE NAME:  DETAIL.DB2DSD01
SOURCE LOCATION:  sharedprefix.MICS.SOURCE(DB2DYEXC)

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

PURPOSE:  This exception warns that a buffer being PAGEFIXed
for write I/O does not have real storage frame backing.

RATIONALE:   Write I/O into a buffer not residing in real
storage increases the overhead of DB2.

DEFINITION:  This exception is noted when the DSDWFXS3 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:  10071                  */
/* TITLE:  WRITE PAGEFIXED W/O REAL STORAGE  */
/* FILE:  DB2DSD01                           */
/* ***************************************** */

IF DSDWFXS3 GT 0 THEN DO;
  EXCCODE='10071';
  SEVERITY='W';
  MGMTAREA='PERFORMANCE';
  EXCDESC1='WRITE PAGEFIXED W/O REAL STORAGE';
  EXCDESC2='BUFFER 3 '                 ||
           '   '                       ||
           'COUNT = '                  ||
            PUT(DSDWFXS3,6.)
            ;
  LINK HIT;
  END;