How to Write the RESTART Logic Using COBOL?
Answers were Sorted based on User's Feedback
i thing restart is using in jcl this is exec parameter,
if we have the 3 steps in jcl
//step1
//step2
//step3 in this case we run the jcl and got the abend at stop3,we don't want to run again step1 and step2,
directly we write like this
Restart = step3 bypass step1 to step2.
| Is This Answer Correct ? | 7 Yes | 12 No |
Answer / mahendra babu
it is a keyword parameter at job level which is used restart the job from a specific step as per the user requriment.
syntax: 1) restart = step name.
2)restart = jclstep.proc step.
ex:-//jobcard , restart= (s3).
//s1
//s2
//s3
//s4
at the above ex is used to restart the job from s3 using the restart parameter.
| Is This Answer Correct ? | 2 Yes | 8 No |
what are the isolation levels and where we use it in the db2 program
perform I from 0 by 1 until I=5?How maney times it will executes
plz any one tell clearly the justify right clause?
what is the maximum error code in mainframe
Why do we use COMP-3 variables for computation, when we know that they are non displayable fields and require additional MOVE to numeric field before we populate it in output Reports?
what is the minimum number of lines a Cobol program should have to successfully compile and run
What rules are followed by the search verb.
Explain about Redefines cluse?
what happens if we dont close cursor in db2-cobol pgm?
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
Without using move verb how to move one variable to another.
ZEROES and SPACES are _______ constants (a) Figurative (b) Numeric (c) Non-numeric (d) Alphabete