How do you restart a step in JCL?
Answers were Sorted based on User's Feedback
Answer / divya prakash
Use RESTART=JOBSTEPNAME.PROCSTEPNAME
Example:-
if the job is abended in STEP10 for proc step "TRANSFORM".
THEN,
RESTART=STEP10.TRANSFORM.
Thanks,
Divya Prakash
| Is This Answer Correct ? | 2 Yes | 4 No |
How is the keyword DUMMY used in JCL?
What is the purpose of the PARM keyword in the EXEC statement?
which utility is used to update pds?
what operation is performed by job statement?
In jcl i have 255 steps. In 255 step i declared proc. In proc i have 20 steps this job is executable or not? why?
What is the use of the utility DFSRRC00 in the JCL?
Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT COUNT(1)?
Explain the hierarchy levels in jcl?
How to copy one PS file to multiple PS files with same data?
how to write a jcl prog to copy alternate recs from ps1 to another ps2,suppose ps1 having 10 recs?
what happens if job falls in loop ? how to resolve it ?
There are 2 steps in a JCL. If the first step abends due to system or user abend and the second step has COND specified as EVEN or ONLY, will this step still be executed inspite of the abend in the previous step?