A job has 150 steps i want to execute only 57th step
Answers were Sorted based on User's Feedback
Answer / piyush mani
it's easy write restart=step57 in job parameter and write cond in 58th step like cond = (x,eq) where x is expected return code of 57th step.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / karthik
Include following two parameters in job card
restart=step57,COND=(0,LE)
by karthik
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / prashant singh
We can also use IEBEDIT utility which will be usefull
without editning the original JCL
| Is This Answer Correct ? | 2 Yes | 0 No |
If i have defined an temperory dataset in step2, how can i call back or use the same dataset in step5 of the same job
A job has 90 steps i want to execute only step7 and step15
which utility is used to run a cobol-db2 program?
What is the motivation behind coding class parameter in job statement?
what happens when time=0 is given in jcl code. what happens when blksize=0 is given in jcl code. what is symbolic and overriding parameters and a example program.
write a jcl to execute a job by 7:00 am on jan 20,1986?
can anyone explain me about sort in jcl with inrec and outrec ?
Hi, If a catolog proc has another proc in it, both have ddnames dd1 and dd2. what proc will override if gave override parameter. Here both have same step names.
Can we able insert data into a PS file Using IEBUPDTE utility??? If Yes can anyone describe it please..
Suppose we have 5 steps in a job.No step should be executed After submitting every step in a job
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
we define the array like this 01 array 02 veg occurs 10 times 03 days occurs 6 times 04 cost pic 9(5). but why don't we write it as 01 array 02 veg occurs 10 times 03 days occurs 6 time 04 cost pic 9(5). is there any error will occur ,what is it? and why don't 01,02,03 not contain picture clause? if we put pic in those is there any error will occur what is it will occur?