What will happen if you attempt to restart a job in the
middle of a JCL // IF .... // ENDIF?
Answer Posted / brahmareddy.t
If you code restart in between if & end-if
the job will execute from first step.
i.e. if you want to restart step5 in between if $ end-if then it will start from step1.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How does jcl specify the job to the operating system?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
What is the purpose of dd?
Explain the function of the steplib dd statement?
What is the maximum length of a single line of jcl?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
what happens in execution stage in job processing?
Which dd parameters are required?
How can an in-stream dataset be terminated?
What is the significance of addrspc parameter in the exec statement?
what is the use of IEBGENER utility?
Explain about ISPF/TSO Commands
What do you understand by the term notcat 2 – gs?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed