Previous Topic: BACKUPNext Topic: CLEANUP


BUILD

DD statements for the batch command facility (z/OS)

//userdb   DD  DSN=user.userdb,DISP=disp
//SYS002   DD  DSN=user.load,DISP=OLD
//SYS003   DD  DSN=user.build,DISP=(NEW,PASS),UNIT=tape,
//             DCB=(RECFM=VB,LRECL=rrr,BLKSIZE=bbb)
//SYSPCH   DD  DSN=&&sortbuild,DISP=(NEW,PASS),
//             UNIT=disk,SPACE=(TRK,1),DCB=BLKSIZE=80
//SORTMSG  DD  SYSOUT=A,DCB=BLKSIZE=bbbb
//SORTWK01 DD  UNIT=disk,SPACE=(TRK,(nnn,nnn))

      The SORTMSG and SORTWKnn files are only needed
      when performing a complete BUILD.

      Add additional SORTWKnn files as necessary.

userdb

DDname of the database file

user.userdb

Data set name of the database file

user.load *

Data set name of the input (SYS002) file; for sizing information see discussion of SYS003 in LOAD

user.build *

Data set name of the output (SYS003) file; for sizing information see BUILD

tape

Symbolic device name of the SYS003 file

rrr

Record size of the SYS003 file

bbb

Block size of the SYS003 file

&&sortbuild

Data set name of the SYSPCH file

disk

Symbolic device name of the SYSPCH file

Note: When running a complete BUILD, SYS002 and SYS003 must point to the same intermediate file. When running a stepped BUILD, SYS002 and SYS003 must point to a different intermediate file.