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

Merging two files having unequal number of rows


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

New User


Joined: 13 Apr 2005
Posts: 1

PostPosted: Wed Apr 13, 2005 10:28 am
Reply with quote

Hi, I have to merge two files. first file has suppose 100 records in SORTed order. Second file has only 30 records and the file is also in SORTed order. I want to merge the files based on the first field with total 100 records in output file.
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: Wed Apr 13, 2005 10:15 pm
Reply with quote

It's not clear what you want to do. If both files are in sorted order, you can MERGE them. If the first file has 100 records and the second file has 30 records, then the output file would have 130 records. Since you say you expect the output file to have 100 records, I can only guess that the 30 records in the second file have duplicates in the first file and you only want one record for each pair of duplicates. To do that, you can use this DFSORT job:

Code:

//S1 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN01 DD DSN=...  input file 1
//SORTIN02 DD DSN=...  input file 2
//SORTOUT DD DSN=...  output file
//SYSIN DD *
  OPTION EQUALS
  MERGE FIELDS=(p,m,f,A)
  SUM FIELDS=NONE
/*


p,m,f is the position, length and format of the field the records are sorted on (e.g. 11,5,CH). A means the records are sorted in ascending order. If they are actually sorted in descending order, use D instead of A.

If that's not what you want, then please explain more clearly what it is you want. Examples of the input records and expected output records would help.
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 To get the count of rows for every 1 ... DB2 3
No new posts Write line by line from two files DFSORT/ICETOOL 7
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Substring number between 2 characters... DFSORT/ICETOOL 2
Search our Forums:

Back to Top