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



i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

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

i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

Answer / siri

//jobname job ,,,,,,,,restart=step5.proc,cond=(00,gt)

Is This Answer Correct ?    0 Yes 0 No

i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

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

i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

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

i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

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

i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

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

Post New Answer

More JCL Interview Questions

Is Default for MSGCLASS = (1,1) ?

2 Answers   IBM,


What is the motivation behind coding class parameter in job statement?

0 Answers  


I have 5 generations in my GDG. How do I code in the JCL to consider all the 5 versions of the GDG ?

5 Answers   Xansa,


How does the jcl specify the job to os?

0 Answers  


A maximum of 100 chars can be passed to Cobol through Parm in JCL, If we want to pass more than 100 Chars how we can do it ?

4 Answers   IBM,






i have step1,step2,step3 from where can i start coding cond parameter ?

2 Answers   Verizon,


how to put a dependency on job in jcl using opc scheduler?

1 Answers   CTC,


What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?

0 Answers  


What do you understand by the terms: joblib and steplib?

0 Answers  


When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?

0 Answers  


Max. No of DD statements in a job ?

4 Answers   CSI,


Suppose your program is reading a Sequential Vsam file. The file contains 10 records. How will you code the JCL to read only 2nd, 5th, 7th,and 10th record?

1 Answers   Thomson,


Categories