I have dataset DS1 which has records say
1
2
3
4
5
...
...
etc
And also I have second dataset DS2 whcih has records
1
3
4
5
6
8
..
...
Both the files are sorted and now I want to compare these files and write it into the third files if the records are matching.
Answer Posted / leo
Using matching logic:
perform following code until either of EOF is found.
EVALUATE TRUE
WHEN KEY1> KEY2
READ FILE2
WHEN KEY2> KEY1
READ FILE1
WHEN KEY1=KEY2
WRITE FILE3 (WHATEVER FORMAT YOU WANT)
READ FILE1
READ FILE 2
END-EVALUATE
You can perform above code until both EOF found, incase you
need to create another file for non matching records. for
matching records only performing until either of EOF will
work.
~LEO
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How can you get the ksds file records into your cobol program?
What are the different rules to perform a Search?
How do you get the data to code the BMS macro?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
Mention the guidelines to write a structured cobol program?
What is the compute verb? How is it used?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What is perform what is varying?
What is Pic 9v99 Indicates in COBOL?
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
Write a cobol program making use of the redefine clause.