IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

DSNU016I DSNUTILB - UTILITY BATCH MEMORY EXECUTION ABENDED,


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sjothiprakash

New User


Joined: 21 Jul 2007
Posts: 12
Location: Chennai

PostPosted: Mon Sep 01, 2008 5:42 pm
Reply with quote

I am trying to load a table using load/replace utility DSNUTILB through a batch job. Getting msg something like this and the job is abending with S04E abend...

DSNU016I DSNUTILB - UTILITY BATCH MEMORY EXECUTION ABENDED, REASON=X'00E40002

Could someone please help on this.

Here is the JCL i have used..

//S020 EXEC PGM=DSNUTILB,PARM='&DB',REGION=0M
//********************************************************
//STATOUT DD SYSOUT=*
//SORTMSG DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//UTPRINT DD SYSOUT=*
//SYSIN DD *

LOAD DATA REPLACE
LOG YES
ENFORCE CONSTRAINTS
INDDN SYSREC
DISCARDDN SYSDISC
ERRDDN SYSERR
WORKDDN (SYSUT1,SORTOUT)
SORTDEVT DISK
SORTNUM 10

INTO TABLE @OWNER.TABLE_ONE

FIELD DETAILS are given here..
/*
//SYSREC DD DSN=TEST.ABC.LOAD,DISP=SHR
//*
//SYSERR DD DSN=TEST.ABC.SYSERR,
// DISP=(,CATLG,CATLG),
// UNIT=(DISK,16),SPACE=(CYL,(10,10),RLSE)
//SYSMAP DD DSN=TEST.ABC.SYSMAP,
// DISP=(,CATLG,CATLG),
// UNIT=(DISK,16),SPACE=(CYL,(10,10),RLSE)
//SYSDISC DD DSN=TEST.ABC.SYSDISC,
// DISP=(,CATLG,CATLG),
// UNIT=(DISK,16),SPACE=(CYL,(10,10),RLSE)
//SORTOUT DD DSN=TEST.ABC.SORTOUT,
// DISP=(,CATLG,CATLG),
// UNIT=(DISK,16),SPACE=(CYL,(10,10),RLSE)
//SYSUT1 DD DSN=TEST.ABC.SYSUT1,
// DISP=(,CATLG,CATLG),
// UNIT=(DISK,16),SPACE=(CYL,(10,10),RLSE)
//SORTWK01 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK02 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK03 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK04 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK05 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK06 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK07 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK08 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK09 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK10 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK11 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK12 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK13 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK14 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK15 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK16 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK17 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
//SORTWK18 DD UNIT=WORK,SPACE=(CYL,(20,10),RLSE)
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Mon Sep 01, 2008 6:04 pm
Reply with quote

Hi,

This is all what I can find out with the information in hand -

Quote:
Message Format: DSNU016I csect UTILITY BATCH MEMORY EXECUTION ABENDED,
REASON=X0nnn

Description: The utility you submitted has abended; 'nnn' is zero if a
user abend was issued, and a hex abend code if a system
abend occurred.

If the X'0nnn' value is eight characters in length, the
abend was a DB2 system X'04E' abend; in this case, 'rrr'
is the DB2 abend reason code.

User Action: This problem should be reported to the System Programmer
if a S04E abend is suspected. if the abend is due to
your error, correct the problem and restart the job. If
the error cannot be corrected, use the -TERM command to
to delete the failing job's utility ID from
SYSIBM.SYSUTIL.
Back to top
View user's profile Send private message
shekhar1s

New User


Joined: 13 Apr 2006
Posts: 14
Location: USA

PostPosted: Fri Sep 05, 2008 6:30 pm
Reply with quote

sjothiprakash,

You need to include STEPLIB in your jcl.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Reorg abended with REASON=X'00E40347' DB2 2
No new posts How to get a stack trace on a looping... ABENDS & Debugging 5
No new posts Calling Java method from batch COBOL ... COBOL Programming 5
No new posts Capturing Job Execution Information All Other Mainframe Topics 3
No new posts REASON 00D70014 in load utility DB2 6
Search our Forums:

Back to Top