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

how to find common names from two input files


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sanjay kumar tripathi

New User


Joined: 08 Jul 2008
Posts: 11
Location: chennai

PostPosted: Tue Jul 08, 2008 6:04 pm
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
ParagChouguley

Active User


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

PostPosted: Tue Jul 08, 2008 6:15 pm
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: 175
Location: PUNE(INDIA)

PostPosted: Tue Jul 08, 2008 6:16 pm
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

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Tue Jul 08, 2008 8:35 pm
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 Dhawan

Superior Member


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

PostPosted: Wed Jul 09, 2008 12:08 pm
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...

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
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 0
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts TRIM everything from input, output co... DFSORT/ICETOOL 1
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts Write line by line from two files DFSORT/ICETOOL 7
Search our Forums:

Back to Top