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

To copy duplicates from two files in to one file


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
siva2
Warnings : 1

New User


Joined: 10 Feb 2006
Posts: 7

PostPosted: Wed May 02, 2007 9:48 am
Reply with quote

is it possible to copy duplicates from two files in to one file ?
if please leeme know how can it be done ? ?
file 1 :

abc
ddd
fff

file 2

eee
ddd
ggg

file 3

ddd
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


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

PostPosted: Wed May 02, 2007 8:33 pm
Reply with quote

Here's a DFSORT/ICETOOL job that will 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,3,CH) FIRSTDUP
/*
Back to top
View user's profile Send private message
raam_kumar

New User


Joined: 25 Apr 2007
Posts: 44
Location: chennai, India

PostPosted: Thu May 03, 2007 11:04 am
Reply with quote

I think it would be better if we use
SELECT FROM(CON) TO(OUT) ON(1,3,CH) ALLDUPS

instead of

SELECT FROM(CON) TO(OUT) ON(1,3,CH) FIRSTDUP

Please correct me if i am wrong
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


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

PostPosted: Thu May 03, 2007 9:23 pm
Reply with quote

Raam,

You're wrong and you could have corrected yourself if you had just tested what you proposed.

Siva2 stated that the output should be:

ddd

With FIRSTDUP, the output is:

ddd

as requested.

With ALLDUPS, the output is:

ddd
ddd

which is NOT as requested.

In the future, I'd suggest you test your solution before posting, especially if you're going to "correct" the person who "invented" the tool (ICETOOL) being used.
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 2
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
Search our Forums:

Back to Top