|
|
Archives of the TeradataForum
Message Posted: Mon, 20 Mar 2006 @ 14:13:31 GMT
Subj: | | Re: JCL sample code to move MLoad log file |
|
From: | | Geoffrey Rommel |
//SYSPRINT DD SYSOUT=*DSN=DC.DW.MLOAD.PROCESS1
The DD statement tells JES where to send the output. SYSOUT=* means "send it to the same output class as the job log". Therefore, you have to
eliminate SYSOUT and send it to a data set, like so:
//SYSPRINT DD DSN=DC.DW.MLOAD.PROCESS1,
// DISP=(NEW,CATLG,CATLG), Keep in case of an abend
// UNIT=SYSDA,SPACE=(CYL,(5,5),RLSE)
You probably don't need to specify DCB parameters. The RECFM and LRECL should come from MLOAD, and the system will choose a reasonable
BLKSIZE for you.
| |