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
 
comparing two files with key and writing in output file

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL
Author Message
Pallavi Patil

New User


Joined: 24 Apr 2008
Posts: 1
Location: pune

PostPosted: Fri Apr 25, 2008 6:53 pm    Post subject: comparing two files with key and writing in output file
Reply with quote

hi,

I have two input files both having same primary key that is no duplicate records are present in both files and i want to get all the records from file1 whose primary key value matches with the same as that of input file 2.
example:

file 1

11111111 trtryykuy,iu
22222222 bttryrty5r6

file 2

11111111 dvrtrbtr
44444444 resrtrty
22222222 serwere


output file
1111111 dvrtrbtr
22222222 serwere
Back to top
View user's profile Send private message
References
Frank Yaeger

DFSORT Moderator


Joined: 15 Feb 2005
Posts: 4574
Location: San Jose, CA

PostPosted: Fri Apr 25, 2008 9:29 pm    Post subject:
Reply with quote

You can use this DFSORT/ICETOOL job to do what you asked for:

Code:

//S1    EXEC  PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG  DD SYSOUT=*
//CON DD DSN=...  input file1
//    DD DSN=...  input file2
//OUT DD DSN=...  output file
//TOOLIN DD *
SELECT FROM(CON) TO(OUT) ON(1,8,CH) FIRSTDUP
/*
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DFSORT/ICETOOL All times are GMT + 6 Hours
Page 1 of 1