i have a jcl calling proc which has 10 steps, i want to
execute from step5 to step10, where can i code RESTART and
COND parameter?
Answers were Sorted based on User's Feedback
Answer / anoop
//jopbcard,restart=jobstep.procstep
in this case job is calling one proc, this proc has 10
steps. We want to restart job from 5th step of proc.
assuming job calls proc in step1. then restart should be :-
restart=step1.step5
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / siri
//jobname job ,,,,,,,,restart=step5.proc,cond=(00,gt)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raghu
we have to code restart parametr on job stmt and code cond on
step level
eg//jooob1 ------------------- restart=stepname.procname
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jalal
1) Put restart = step5 in the job card.
2) Put Cond = only in all the steps from step1 to step4.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / rakesh w
//jopbcard,restart=procstp.step5
//procstp exec proc1
//....
i.e restart=procstep.stepname
correct me if i am wrong
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / ch.mohan
w
we can mention job card to restart=step5
and cond param used to step6
| Is This Answer Correct ? | 0 Yes | 2 No |
What are the valid DSORG values ?
there are 10 steps in jcl how to execute the steps from step2 to step8 only
what is the use of IEBGENER utility?
Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE
Is automatic restart possible in jcl?
Explain about File Tailoring
What is the function of //jcllib statement?
Can we find specific member without knowing the name of PDS or can we search a member to which PDS it belongs to? if so how?
How can the disposition of sysout datasets be set for an entire jobstream?
what is meant by jobtrac?
Explain how can a jobs execution priority be modified?
How many types of libraries are there in JCL ?