I need some help as I'm only been a mainframe operator for about 4 years. I have been promoted to my new position of a JCL Specialist. I'm still wet be hide the ears with some JCL or should I say all.
I have been task to change the JCL in our current environment to use DSAD instead of tape (3494). I have a basic concept, but I don't have some to train me in how to understand what needs to be removed from the JCL. I have pasted an example of what I am talking about.
Before my change:
EXEC PGM=IDCAMS
DD SYSOUT=*
DD SYSOUT=*
DD DSN=VUB.PROD1.UBH51S3.INVXREF.CLUSTER,DISP=SHR
DD DSN=UB.MON.UB.B.UBH51S3,DISP=(NEW,CATLG),
DCB=(RECFM=FB,LRECL=80),
UNIT=VTAPE,LABEL=EXPDT=98090,VOL=(,,,10)
DD DSN=SYS2.CTLLIB(UBMOID31),DISP=SHR
After my change:
EXEC PGM=IDCAMS
DD SYSOUT=*
DD SYSOUT=*
DD DSN=VUB.PROD1.UBH51S3.INVXREF.CLUSTER,DISP=SHR
DD DSN=UB.MON.UB.B.UBH51S3,DISP=(NEW,CATLG),
DCB=(RECFM=FB,LRECL=80), <---------------------------------------Can this be removed?????
SPACE=(CYL,(300,200),RLSE)
DD DSN=SYS2.CTLLIB(UBMOID31),DISP=SHR