Write a jcl to execute a job by 7 a.m on Jan 20,1986 ?
Answer Posted / guest
THE code IS : //*MAIN DEADLINE=(0700,B,01208
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
Is automatic restart possible in jcl?
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
What are the parameters that are used in creating a gdg?
How dummy is used in jcl?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
What are the rules employed while naming the steps in a job?
how would you create a temporary dataset? And where will you use them?
Step 1 RC 4 Step 2 Step 3 I want to know the COND parameter which can be coded in step 2 or 3. Step 2 should be executed based on Step 1 RC and Step 3 should not be executed based on step 1's RC
Explain about LMFREE�free data set from its association with data ID
Is acct parameter mandatory?
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
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
What does a disposition of (MOD,DELETE,DELETE) mean ?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?