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

How to sort 2 files using JCL


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

New User


Joined: 26 Jan 2006
Posts: 2

PostPosted: Mon Nov 06, 2006 4:57 pm
Reply with quote

Hi,

I am coming back to mainframe after a gap of 1 year..

How to sort 2 files using JCL?? What utility must be used? how should the DD statement look like?
Back to top
View user's profile Send private message
rini

New User


Joined: 16 May 2006
Posts: 6

PostPosted: Mon Nov 06, 2006 5:05 pm
Reply with quote

In what condition you want to sort the files? Do you want to sort the files alone or you want to merge those sorted files?
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: Mon Nov 06, 2006 10:10 pm
Reply with quote

If you have two VB files, or two FB files with the same LRECL, and you want to sort them on a common key, you can use a DFSORT job like this:

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD DSN=...  input file1
//       DD DSN=...  input file2
//SORTOUT DD DSN=...  output file
//SYSIN    DD    *
  SORT FIELDS=(p,m,f,a)
/*


where p,m,f,a is the starting position, length, format and sequence (ascending or descending) of the key, e.g. 5,4,CH,A.

If you're not familiar with DFSORT and DFSORT's ICETOOL, I'd suggest reading through "z/OS DFSORT: Getting Started". It's an excellent tutorial, with lots of examples, that will show you how to use DFSORT, DFSORT's ICETOOL and DFSORT Symbols. You can access it online, along with all of the other DFSORT books, from:

Use [URL] BBCode for External Links
Back to top
View user's profile Send private message
sandhyaranirao

New User


Joined: 26 Jan 2006
Posts: 2

PostPosted: Tue Nov 07, 2006 3:53 pm
Reply with quote

Thanks for input..
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 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
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 Write line by line from two files DFSORT/ICETOOL 7
Search our Forums:

Back to Top