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

Compare two fields in the same file


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

New User


Joined: 27 Jul 2007
Posts: 11
Location: india

PostPosted: Sat Apr 11, 2009 2:51 am
Reply with quote

hello,

I want to compare two fileds in the the file and if match found i want to write into on file and match not found i want to write in to another file.

Could please any one help me in this .... ICETOOL syntex.

Following is the scenairo for the same.
Input

Code:

aaaaa aaaaa
bbbbb ccccc
ddddd hhhhh
ccccc ccccc


out put 1

Code:
 
aaaaa aaaaa
ccccc ccccc


out put 2

Code:
 
bbbbb ccccc
ddddd hhhhh


Thanks & Regards,
Mauvis.
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: Sat Apr 11, 2009 3:55 am
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 (FB)
//OUT1 DD DSN=...  output file1 (FB)
//OUT2 DD DSN=...  output file2 (FB)
//TOOLIN DD *
COPY FROM(IN) USING(CTL1)
/*
//CTL1CNTL DD *
  OUTFIL FNAMES=OUT1,INCLUDE=(1,5,CH,EQ,7,5,CH)
  OUTFIL FNAMES=OUT2,SAVE
/*



I assumed your input file has RECFM=FB. If it has RECFM=VB, just change the first OUTFIL statement to:

Code:

  OUTFIL FNAMES=OUT1,INCLUDE=(5,5,CH,EQ,11,5,CH) 
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