which utility is used to sort a file in jcl?
No Answer is Posted For this Question
Be the First to Post Answer
What is job control language?
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 three major types of JCL statements? What are their functions?
What is GDG?
which statement is used to end the in-stream procedure in a jcl?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
A job has 150 steps i want to execute only 57th step
how would you create a temporary dataset? And where will you use them?
What 3 guidelines do we have to follow when concatenating DD statements?
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?
There are two input sorting files and there is a need to create one sort out file which contains data of both input files. What is the sort card for this. Write a sample JCL for this using a control card?
Is their any set of rules for dd? Explain.