Rob Schramm wrote on 12/12/2006 02:59:35 PM: > I think DFSORT can do this.. but I don't see it in the manual.. or I am > missing it. I want to take an input file lrecl=11 and output lrecl=15 > so that the records are joined. > > The input records > > record 1: 123 456 789 > record 2: abc def ghi > record 3: jkl mnop qr > > would become output records like.. > > record 1: 123 456 789 abc > record 2: def ghi jkl qr > > Can anyone point me in the right direction? I would like to use > DFSORT/ICETOOLs if possible or something like FILEMAN.
It's not clear to me what you want to do. Do you want to create new records that rearrange each contiguous 11 bytes of the input records into 15 contiguous bytes for the output records? Wouldn't that give you the following output records: 123 456 789abc def ghijkl mnop qr But you show these output records: 123 456 789 abc def ghi jkl qr Where did the extra blank between 789 and abc come from (it's not in input records 1 or 2)? What happened to the mnop bytes from input record 3? What exactly are the rules for going from input to output? Can you show a better example? Frank Yaeger - DFSORT Team (IBM) - [EMAIL PROTECTED] Specialties: PARSE, JFY, SQZ, ICETOOL, IFTHEN, OVERLAY, Symbols, Migration => DFSORT/MVS is on the Web at http://www.ibm.com/storage/dfsort/ ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

