Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
how to find common names from two input files

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL
Author Message
sanjay kumar tripathi

New User


Joined: 08 Jul 2008
Posts: 1
Location: chennai

PostPosted: Tue Jul 08, 2008 6:04 pm    Post subject: how to find common names from two input files
Reply with quote

how to find common names from two input files having n names and write it into another output file?
Back to top
View user's profile Send private message
References
ParagChouguley

Active User


Joined: 03 Feb 2007
Posts: 156
Location: PUNE(INDIA)

PostPosted: Tue Jul 08, 2008 6:15 pm    Post subject:
Reply with quote

Sort both files on Name field

Read file 1
Read file 2

If Name_file1 = Name_file2
Perform below PARA until endofboth the files

PARA:
Write to o/p file
Read file 1
Read file 2
End-if
IF Name_file1 > Name_file2
Read file 2
End-if

IF Name_file1 < Name_file2
Read file 1
End-if
Back to top
View user's profile Send private message
ParagChouguley

Active User


Joined: 03 Feb 2007
Posts: 156
Location: PUNE(INDIA)

PostPosted: Tue Jul 08, 2008 6:16 pm    Post subject:
Reply with quote

Sorry a small mistake in earlier post :

It should be like:

Sort both files on Name field

Read file 1
Read file 2

Perform below PARA until endofboth the files

PARA:

If Name_file1 = Name_file2
Write to o/p file
Read file 1
Read file 2
End-if
IF Name_file1 > Name_file2
Read file 2
End-if

IF Name_file1 < Name_file2
Read file 1
End-if
Back to top
View user's profile Send private message
dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 8724
Location: 221 B Baker St

PostPosted: Tue Jul 08, 2008 8:35 pm    Post subject:
Reply with quote

Hello sanjay and wecome to the forums,

Quote:
how to find common names from two input files having n names and write it into another output file?
Please post a few sample records from both files and the output you want when these files are processed.

I believe the posted code will not handle duplicates as a "hit".
Back to top
View user's profile Send private message
Anuj D.

Global Moderator


Joined: 22 Apr 2006
Posts: 2219
Location: Phoenix, AZ

PostPosted: Wed Jul 09, 2008 12:08 pm    Post subject:
Reply with quote

Hi,

As Dick has mentioned, providing your expectations with sample input/output is always good.

However, so far it seems a standard "file-matching" problem; if so, there is a sticky in the COBOL forum for such a COBOL program. With a lilttle modification you should be ready to go, here is the link...

http://ibmmainframes.com/viewtopic.php?t=22649

If this is not what you are searching for, please clarify more.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL All times are GMT + 6 Hours
Page 1 of 1