4. EXCEPTIONS › 4.3 Exception Descriptions › 10092 NO. Times Deferred Write Threshold Buffer 3
10092 NO. Times Deferred Write Threshold Buffer 3
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 times
deferred write threshold was reached for buffer pool 3.
RATIONALE: This exception tracks the deferred write
threshold reached for this buffer pool.
DEFINITION: This exception is noted when the DSDDWRT3 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: 10092 */
/* TITLE: NO. TIMES DEFERRED WRITE THRESHOLD REACHED */
/* FILE: DB2DSD01 */
/* *********************************************************/
IF DSDDWRT3 GT 0 THEN DO;
EXCCODE='10092';
SEVERITY='W';
MGMTAREA='PERFORMANCE';
EXCDESC1='NO. TIMES DEFERRED WRITE THRESHOLD REACHED';
EXCDESC2='BUFFER 3 ' ||
' ' ||
'COUNT = ' ||
PUT(DSDDWRT3,6.)
;
LINK HIT;
END;