i have 6 steps in my jcl program
after going to 5th step i want to execute 3rd step.....how can
i do it....by using(RESTART) can i do it or not?
Answer Posted / muttaiah
What i understand from question is
After executing 4th step you want to execute 3rd step.
In JCL.
We can execute steps only sequentially meaning steps mentioned in the job has to be executed in the way they are.
So as far as my knowledge this is impossible.
one way is if the job execution is stopped after 4th step. you can then execute from any step using restart.
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
List the different jcl statements that are not permitted in the procedures?
List the different components of jcl statement?
what are the types of abends that occur on job failure? And explain the possible causes of these
What is one line to pass PARM from JCL to COBOL?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
Where can program checkpoints be stored for use in a restart?
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
Explain dfsort utility?
What is the significance of addrspc parameter in the exec statement?
What are the 4 fields in dd statement?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
Is their any limit for data sets?
How do you access an uncatalogued dataset in a jcl?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
How does jcl act on a cobol code?