I have the requirement to compare the two files and pick up
the matching records.
File 1. file2
23 32
32 13
34 15
35 36
36 35
43
Get the matching records from this 2 files to out file. how
you will do this in cobol program?
Answer Posted / michar de papachuil
This might help you here but you have to Sort the two files
first before doing the match.
IF File1 = File2
PERFORM 2400-MATCH-BOTH-FILES THRU 2400-EXIT
PERFORM 2100-READ-FILE1 THRU 2100-EXIT
PERFORM 2200-READ-FILE2 THRU 2200-EXIT
ELSE
IF I-GROUP-SUBSYSTEM LESS THAN I-MODULE-SUBSYSTEM
PERFORM 2600-UNKNOWN-FILE1-VALUES THRU 2600-EXIT
PERFORM 2100-READ-FILE1 THRU 2100-EXIT
ELSE
PERFORM 2500-UNKNOWN-FILE2-VALUES THRU 2500-EXIT
PERFORM 2200-READ-FILE2 THRU 2200-EXIT
END-IF
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Give some examples of command terminators?
which is Best IBM Mainframe Training and Placement Institute in Ameerpet Hyderabad
how do you reference the ksds vsam file formats from cobol programs
Why would you use find and get rather than to obtain?
Write a program to enter and display the names of students in a class using the occurs clause.
When is inspect verb is used in cobol?
What are the different types of condition in cobol and write their forms.
Write a program to explain size error.
What is redefines clause in COBOL?
how can we apply for HSBC exam(Mainframe) in India??? i went to their site and was told to submit my CV ,. etc..( totally confusing...)
What is the difference between PIC 9.99 and PIC9v99?
Write a cobol program making use of the redefine clause.
What is the difference between binary search and sequential search?
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning