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
 
Delete Multiple occurences from a file if key match 2nd file

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

New User


Joined: 28 Jul 2005
Posts: 1

PostPosted: Thu Jul 28, 2005 6:12 am    Post subject: Delete Multiple occurences from a file if key match 2nd file
Reply with quote

I have the following two files of equal record length.

File 1:

1 aaaa
1 bbbb
2 xxxx
2 kkkk
3 oooo
4 yyyy

File 2:
2

I need my output as ;
1 aaaa
1 bbbb
3 oooo
4 yyyy

I tried various ways but failed instead I got my results as
1 aaaa
3 oooo
4 yyyy

Basically my requirement is to delete all the occurance from one file when the key is present in the second file. Can anyone help me with an answer ? Thanks in advance.
Back to top
View user's profile Send private message
References
Frank Yaeger

DFSORT Moderator


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

PostPosted: Thu Jul 28, 2005 10:29 pm    Post subject:
Reply with quote

Nandita,

You can use the following DFSORT job to do what you asked for:

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD DSN=...  input file2
//SORTOUT DD DSN=&&S1,UNIT=SYSDA,SPACE=(TRK,(1,1)),DISP=(,PASS)
//SYSIN    DD    *
  OPTION COPY
* Create a DFSORT Symbol as follows:
* DEL,'n'
* where n is the first byte in the file2 record.
  OUTREC FIELDS=(C'DEL,''',1,1,C'''',80:X)
/*
//S2    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SYMNAMES DD DSN=&&S1,DISP=SHR
//SORTIN DD DSN=... input file1
//SORTOUT DD DSN=...  output file
//SYSIN    DD    *
  OPTION COPY
* Use DEL to delete the unwanted records from file1.
  OMIT COND=(1,1,CH,EQ,DEL)
/*
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