How to execute step2,step5,step7 of a proc of 10 steps?
You are not allowed to change in JCL.
Answer Posted / muttiah
@Adarsh:
That will be useful when we want to copy steps from a JCL
directly, not from a PROC.
@ NaliniNayak:
Using restart you can point to step2 of a proc as below.
//RESTART=PROCSTEP.STEP2 in the job card.
Code Cond=(0,LE) for all the steps you want to skip..Say in
our case it's 3,4,6,8 and 9th step in proc.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Which statement is used to identify the private libraries in job?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
Explain the function of //cntl statement?
Is it possible to code instream data in a PROC?
Is condition checking possible in jcl? If yes, how?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
Step 1 RC 4 Step 2 Step 3 I want to know the COND parameter which can be coded in step 2 or 3. Step 2 should be executed based on Step 1 RC and Step 3 should not be executed based on step 1's RC
what happens in execution stage in job processing?
Differentiate between the joblib and the steplib statements?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
What is the maximum length of a single line of jcl?
What is the function of job statement in jcl?
whats the diff bw the evaluate also and and?
What is the use of symbol // in jcl?