|
|
Archives of the TeradataForum
Message Posted: Thu, 22 Dec 2005 @ 15:23:42 GMT
Subj: | | Re: MVS utility configuration file |
|
From: | | Anomy Anom |
<-- Anonymously Posted: Thursday, December 22, 2005 07:43 -->
Hi, Andy,
I don't know what you mean with "configuration file". On MVS, we include two libraries in every jcl:
ncr.teradata.appload (ddname: steplib)
and ncr.teradata.trload (ddname: ctrans)
for example:
//S001 EXEC PGM=BTQMAIN
( or fastload,or mload )
//STEPLIB DD DSN=firstqual.NCR.TERADATA.APPLOAD,DISP=SHR
//CTRANS DD DSN=firstqual.NCR.TERADATA.TRLOAD,DISP=SHR
//SYSIN DD DSN=firstqual.secqual.DATA(logon),DISP=SHR
( contains the logon-string to td )
// DD
DSN=firstqual.secqual.DATA(select_script),DISP=SHR ( contains the
statements )
//SYSPRINT DD SYSOUT=*
//SYSTERM DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSABEND DD SYSOUT=*
//
You would reference the load file (for fastload, mload) with it s ddname within the load-script.
| |