Akil
New User
Joined: 24 Oct 2023 Posts: 22 Location: India
|
|
|
|
Hello,
My reorg job failed with below message.
joblog:
SORT TASK DA07: MEMORY BELOW THE BAR: OPTIMAL 23 MB, USED 15 MB
SORT TASK DA06: 24746409 RECORDS SORTED, ESTIMATED 24746404, VARIATION 0 PERCE
SORT TASK DA06: AVERAGE RECORD LENGTH PROCESSED 224, ESTIMATED 223, VARIATION
SORT TASK DA06: USED DFSORT
SORT TASK DA06: MEMORY BELOW THE BAR: OPTIMAL 24 MB, USED 15 MB
UTILITY DATA BASE SERVICES MEMORY EXECUTION ABENDED, REASON=X'00E40347'
reorg control statment:
//REORG EXEC PGM=DSNUTILB
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSERR DD DSN=&&SYSERR,
// DISP=(MOD,DELETE,CATLG),
// SPACE=(CYL,(10,15)),
// UNIT=SYSDA
//SYSREC DD DSN=&&SYSREC,
// DISP=(NEW,DELETE,DELETE),
// UNIT=(SYSDA,9),
// SPACE=(CYL,(500,50),,,ROUND)
//SYSUT1 DD DSN=&&SYSUT1,
// DISP=(NEW,DELETE,DELETE),
// UNIT=(SYSDA,59),
// SPACE=(CYL,(500,50),,,ROUND)
//UTPRINT DD SYSOUT=*
How can I fix this error and what can be included/corrected in order to have successful run |
|
Pedro
Global Moderator
Joined: 01 Sep 2006 Posts: 2592 Location: Silicon Valley
|
|
|
|
re: How can I fix this error
You can search internet for:
00E40347 site:ibm.com
and get a list of stuff to look for, which includes message in SYSLOG, LOGREC, SYSPRINT, UTPRINT and maybe in dump files. |
|
Pete Wilson
Active Member
Joined: 31 Dec 2009 Posts: 590 Location: London
|
|
|
|
I assume there were message numbers associated with the messages you posted? Leaving the message numbers out is really annoying as it's crucial for diagnosis because the message suffix indicates I (info), E (error) A (abend) so you can determine immediately which ones probably matter or not.
Google this and there's plenty of info:
UTILITY DATA BASE SERVICES MEMORY EXECUTION ABENDED, REASON=X'00E40347' |
|