Answer Posted / guest
RESTART is a JOB statement keyword. It is used to restart
the job at a specified step rather than at the beginning.
| Is This Answer Correct ? | 27 Yes | 1 No |
Post New Answer View All Answers
in ways data can be passed to a COBOL program from JCL?
what is DD statement is used in JCL?
What is timing concept in mainframe?
How to submit jcl through a cobol program?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
How does the jcl specify the job to os?
How jcl is used for testing batch programs?
What are steplib and joblib? What for they are used?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
What is the purpose of dd * statement in jcl?
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
Is automatic restart possible in jcl?
what are the statements that are not valid to be included in an include statement?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
Explain how can an in-stream dataset be terminated?