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

To sort all records frm two files in one output file


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

New User


Joined: 28 May 2005
Posts: 26
Location: Chennai

PostPosted: Tue Jun 07, 2005 10:34 am
Reply with quote

hello ,

here is the example

Code:

file a                fileb
1                      2
2                      4
4                      5
6                      7


i want to sort the file those records in both files in one output file and those belong to individuals in the other output file....
Back to top
View user's profile Send private message
priyesh.agrawal

Senior Member


Joined: 28 Mar 2005
Posts: 1448
Location: Chicago, IL

PostPosted: Tue Jun 07, 2005 4:19 pm
Reply with quote

Quote:
i want to sort the file those records in both files in one output file and those belong to individuals in the other output file....


If I m not mistaking, U r looking for two o/p files.
One having all the values from File 1, which are also there in File 2.
Second having all the recs from both files which are not in the other file.

If Yes....Please try this code.

Code:
//S010     EXEC PGM=ICETOOL                     
//TOOLMSG   DD SYSOUT=*                         
//DFSMSG    DD SYSOUT=*                         
//IN     DD DSN=INPUT.FILE.FIRST,DISP=SHR 
//        DD DSN=INPUT.FILE.SECOND,DISP=SHR 
//OUT    DD DSN=OUTPUT.FILE.NO.DUP,           
//          DISP=(,KEEP,DELETE),               
//          RECFM=FB,LRECL=80,                 
//          SPACE=(80,(10,10),RLSE)             
//TOOLIN DD *                                   
  SELECT FROM(IN) TO(OUT) ON(1,[b]L[/b],CH) NODUPS     
//


This will give you Not duplicate values. Replacing NODUPS in the code with ALLDUPS will give you duplicate values. Also change "L" in the code to the field value of yours (1 in your given example).

Let me know, if having any question.

Regards,

Priyesh.
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: Tue Jun 07, 2005 9:43 pm
Reply with quote

pbgunasekar,

You can use the following DFSORT/ICETOOL job to get the matching records in one file and the non-matching records in another file:

Code:

//S1    EXEC  PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//CON DD DSN=...  input file a
//    DD DSN=...  input file b
//MATCH DD DSN=...  output file with matching records
//NOMATCH DD DSN=...  output file with non-matching records
//TOOLIN DD *
SELECT FROM(CON) TO(MATCH) ON(1,1,CH) ALLDUPS DISCARD(NOMATCH)
/*


MATCH will have:

2
2
4
4

NOMATCH will have:

1
5
6
7

If that's not what you want, then show me the records you want in each output file and explain what you're trying to do.
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(F1 & F2) and writ... JCL & VSAM 8
No new posts TRIM everything from input, output co... DFSORT/ICETOOL 1
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
Search our Forums:

Back to Top