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

Select the records which are duplicates on the combination


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
nagarajan.dharani

New User


Joined: 27 Dec 2006
Posts: 36
Location: Chennai

PostPosted: Tue Nov 13, 2007 7:43 pm
Reply with quote

Hi,

Could someone help me with the following requirement.

I've a sequential with the records as below

Code:

Emp-no            Emp-type   PRM-IND
000000001         CL         Y
000000001         CL         N
000000001         CL         N
000000001         CL         N
000000001         CL         N
000000002         CL         Y
000000002         CL         Y
000000003         CL         N
000000004         CL         Y
000000005         CL         Y
000000005         CL         Y


The requirement is to select the records which are duplicates on the combination of Emp-no and Emp-type

My output should look like

Code:

000000001         CL         Y
000000001         CL         N
000000001         CL         N
000000001         CL         N
000000001         CL         N
000000002         CL         Y
000000002         CL         Y
000000005         CL         Y
000000005         CL         Y


Is there any possibility to do this using DFSORT/ICETOOL

Thanks,
Dharani
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: Tue Nov 13, 2007 10:10 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=*
//IN DD DSN=...  input file
//OUT DD DSN=...  output file
//TOOLIN DD *
SELECT FROM(IN) TO(OUT) ON(1,9,CH) ON(33,2,CH) ALLDUPS
/*
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 To fetch records that has Ttamp value... DFSORT/ICETOOL 4
No new posts ICETOOL returns no records JCL & VSAM 1
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts Compare only first records of the fil... SYNCSORT 7
Search our Forums:

Back to Top