Previous Topic: 10069 Write Pagefixed Without Real Storage - Pool 2

Next Topic: 10071 Write Pagefixed Without Real Storage - Pool 3

10070 Read 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 read I/O does not have real storage frame backing.

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

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

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