We have two PS files,want to compare those files and put
the duplicate records in one file.
Input file 1 contains(1,2,4,9,10)
Input file 2 contains (1,4,5,11,12,14,16).
Help me with jcl.
Answer Posted / karthik
@aditi n nikita
i think we can use ibm utility iebcompare
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Brief description of inline procedure of jcl.
In job processing, what happens in conversion stage?
What is the function of //cntl statement?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
how do you code a null statement?
What is condition checking in jcl? Is this possible?
How is the record format of an output dataset specified?
What is notcat 2 - gs?
what is the compile process of cobol program expalin with code
What is the purpose of dd?
How dummy is used in jcl?
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
What is timing concept in mainframe?
What are the jcl procedures?