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

Sort JCL to search whether these values are present


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
raj12vel

New User


Joined: 20 Dec 2008
Posts: 43
Location: New Jersey

PostPosted: Fri Dec 26, 2008 8:17 pm
Reply with quote

Hi All,

I need your help. I have two input files.find below.

Input file1:
123
456
789

Input File2:
GARS123
GRAS456
SARG789

So now using the the values of the first input file, i have to search whether these values are present in the second input file, if so the entire values from input file2 (For Ex : GARS123) need to be placed in output file.

Like wise needs to search for all the values in the input file1.

Hope the above issue is clear enough.
Back to top
View user's profile Send private message
ramsri

Active User


Joined: 18 Oct 2008
Posts: 380
Location: India

PostPosted: Fri Dec 26, 2008 9:15 pm
Reply with quote

raj12vel,

Try this.....

Code:

//SORT01   EXEC PGM=SORT         
//SORTJNF1 DD  *                 
123                             
456                             
789                             
//SORTJNF2 DD  *                 
GARS123                         
GRAS456                         
SARG789                         
SARG890                         
//SORTOUT  DD  SYSOUT=*         
//SYSIN    DD  *                 
  JOINKEYS FILE=F1,FIELDS=(1,3,A)
  JOINKEYS FILE=F2,FIELDS=(5,3,A)
  REFORMAT FIELDS=(F2:1,7)       
  SORT FIELDS=COPY               
  END                           
/*                               


Output:
Code:

GARS123
GRAS456
SARG789


HTH.
Back to top
View user's profile Send private message
raj12vel

New User


Joined: 20 Dec 2008
Posts: 43
Location: New Jersey

PostPosted: Fri Dec 26, 2008 9:28 pm
Reply with quote

Great. Working fine.

thnaks alot.

can i see the output in the new output file. If so, how to give the same in the code
Back to top
View user's profile Send private message
raj12vel

New User


Joined: 20 Dec 2008
Posts: 43
Location: New Jersey

PostPosted: Fri Dec 26, 2008 10:20 pm
Reply with quote

I got it. Thanks for your timed help.
Back to top
View user's profile Send private message
ramsri

Active User


Joined: 18 Oct 2008
Posts: 380
Location: India

PostPosted: Sun Dec 28, 2008 2:00 pm
Reply with quote

glad that I could help icon_smile.gif
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Search two or more word with FILEAID Compuware & Other Tools 15
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
Search our Forums:

Back to Top