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
 
Given two files we need to extract the common records!!

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

New User


Joined: 04 Oct 2005
Posts: 1

PostPosted: Mon Oct 17, 2005 4:17 pm    Post subject: Given two files we need to extract the common records!!
Reply with quote

hi..

we are given two files frm which we need 2 extract only the common record. Suggest if any utility is there for the same or if it is to be done progamatically??

Tks,,
Back to top
View user's profile Send private message
References
priyesh.agrawal

Global Moderator


Joined: 28 Mar 2005
Posts: 1509
Location: Chicago, IL

PostPosted: Mon Oct 17, 2005 4:24 pm    Post subject: Re: Given two files we need to extract the common records!!
Reply with quote

DFSORT's ICETOOL with ALLDUPS option will do the need....

Code:
//S010     EXEC PGM=ICETOOL                   
//TOOLMSG   DD SYSOUT=*                       
//DFSMSG    DD SYSOUT=*                       
//IN     DD DSN=RECORDS.INPUT1,DISP=SHR
//         DD DSN=RECORDS.INPUT2,DISP=SHR
//OUT    DD DSN=RECORDS.OUT,     
//          DISP=(,KEEP,DELETE),             
//TOOLIN DD *                                 
  SELECT FROM(IN) TO(OUT) ON(1,L,CH) ALLDUPS 
//


Where L = Length of the record.

Regards,

Priyesh.
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