Answer Posted / vssd
GDG(0) gives the latest generation.
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
How can a stopped job be started again?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
Are there any set of rules for the names of the steps used in a job?
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
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?
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
Is it possible to define dd statements as you want?
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
Explain the purpose of dd * statement in jcl?
Is automatic restart possible in jcl?
How do you access an uncatalogued dataset in a jcl?
when does a dataset go uncataloged?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
How gdg are concatenated?
What does a disposition of (MOD,DELETE,DELETE) mean ?