4. EXCEPTIONS › 4.3 Exception Descriptions › 10104 Record Unsuccessfully Written
10104 Record Unsuccessfully Written
FILE: DB2 System Activity File
SAS FILE NAME: DETAIL.DB2DSY01
SOURCE LOCATION: sharedprefix.MICS.SOURCE(DB2DYEXC)
SEVERITY: Warning (Severity='W')
MANAGEMENT AREA: Security (MGMTAREA='Security')
PURPOSE: This exception warns that the specified
instrumentation facility failed to write a DB2 record.
RATIONALE: Incorrect operation of the instrumentation
facility SMF, GTF, RES, or SRV causes the loss of DB2 system
activity and accounting data.
DEFINITION: This exception is noted when the DSYRECN3 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: 10104 */
/* TITLE: RECORD UNSUCCESSFULLY WRITTEN */
/* FILE: DB2DSY01 */
/* ***************************************** */
IF DSYRECN3 GT 0 THEN DO;
EXCCODE='10104';
SEVERITY='W';
MGMTAREA='SECURITY';
EXCDESC1='RECORD UNSUCCESSFULLY WRITTEN';
EXCDESC2='DESTINATION = ' ||
PUT(DSYIDES3,$4.) ||
' ' ||
'RECORD COUNT = ' ||
PUT(DSYRECN3,6.)
;
LINK HIT;
END;