IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Got stuck in COBOL logic


IBM Mainframe Forums -> HomeWorks & Requests
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
rdhupad
Currently Banned

New User


Joined: 06 May 2009
Posts: 4
Location: Pune

PostPosted: Wed Apr 21, 2010 8:34 pm
Reply with quote

Hi all,

I would like to find out the unmatched data from below given data. Please let me know the correct logic regarding this.I would like to take the data of two variables for matching purpose.

FILE 1 FILE 2

A A1 B B1

10 1 11 1
11 2 10 1
11 3 11 2
12 4 11 3
13 2 13 2

The logic should be like this way:--
1] File 1 is having data and one by one record of (A and A1) should check with every record(B and B1) of File 2 and if match record found then no action and if match record not found then this will be the output.

Appreciated much for valuable suggestions.

Thanks
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Wed Apr 21, 2010 8:47 pm
Reply with quote

Sort file 1 and file 2. You then have a simple 2-way file merge process and there's code already posted to do this.

The WORST possible approach would be to read a record from file 1, open ifle 2 and read it until EOF or a match, close it, ....
This is extremely time-consuming, wasteful of resources, and not a good approach at all!
Back to top
View user's profile Send private message
rdhupad
Currently Banned

New User


Joined: 06 May 2009
Posts: 4
Location: Pune

PostPosted: Thu Apr 22, 2010 11:00 am
Reply with quote

Thanks for this reply.

Can you please let me know where is thie sorted code available
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Apr 22, 2010 2:35 pm
Reply with quote

Go to Mainframe COBOL part of the Forum, there is a sticky "2-File Match/Merge sample code ". Start from that.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> HomeWorks & Requests

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top