I have a JCL with 100 steps. I want run the Alternate steps
in the JCL ( Like 2 ,4,6,8 etc.. ). How can I acheive this
scenario? If It is by Cond Parameter can you provide the
Condition code for that?
Answer Posted / srk
specify restart=step2,cond=even on job statement i.e,
execution begings at step no 2 and every step from step2
onwards executed.
for odd number jobsteps specify cond=(o,le)(condition is
ture for all return codes hence steps with this cond code is
bypassed)
hence begin at step2 and odd no steps are bypassed i.e even
steps are executed
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
How would you understand error(execution phase)?
Explain how can values be passed from the job stream to an executable program?
What do you understand by the terms: joblib and steplib?
Explain the jcl exec statement?
What is the syntax of JCL statement?
Does jcl support automatic restart?
what is a jcl?
Explain the purpose of dd dummy statement?
how you can direct the data to spool using SYSOUT option?
Can we use DISP=SHR in output file in JCL
What is the use of disp parameter?
List the various advantages of using jcl language?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
Are there any set of rules for the names of the steps used in a job? What are they?
Can we call instream to catalog and catalog to instream?