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

WHETHER WE CAN HAVE STATEMNT LIKE THIS IN SORT?


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

New User


Joined: 20 Mar 2007
Posts: 10
Location: Chennai

PostPosted: Thu Mar 22, 2007 7:14 pm
Reply with quote

Code:

//SORTIN  DD DSN=DSNAME1,DISP=SHR
//        DD DSN=DSNAME2,DISP=SHR
//SORTOUT DD DSN=DSNAME3,DISP=(NEW,.....
//SYSIN DD *
    SORT FIELDS=(......)
//
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Thu Mar 22, 2007 7:19 pm
Reply with quote

Like what? A concatenated input? Yes.
SORT FIELDS=... Yes.
Back to top
View user's profile Send private message
SARANYA DEVI

New User


Joined: 20 Mar 2007
Posts: 10
Location: Chennai

PostPosted: Thu Mar 22, 2007 7:23 pm
Reply with quote

WHETHER IT WILL PERFORM THE SAME FUNCTION AS MERGE???
THEN WHATS THE DIFFERENCE B/W THEM...
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: Thu Mar 22, 2007 8:40 pm
Reply with quote

MERGE would look like this:

Code:

...
//SORTIN01  DD DSN=DSNAME1,DISP=SHR
//SORTIN02  DD DSN=DSNAME2,DISP=SHR
//SORTOUT DD DSN=DSNAME3,DISP=(NEW,.....
//SYSIN DD *
    MERGE FIELDS=(......)


But in order to use MERGE, the records in DSNAME1 would have to already be in sorted order by the key, and the records in DSNAME2 would have to already be in sorted order by the key. With SORT, the records in DSNAME1 and DSNAME2 can be in any order.

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
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 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 JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
No new posts how to calculate SUM value for VB fil... DFSORT/ICETOOL 1
Search our Forums:

Back to Top