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

demerge records based on key


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

Senior Member


Joined: 16 Feb 2007
Posts: 1399
Location: IL, USA

PostPosted: Sat Feb 07, 2009 9:51 pm
Reply with quote

input lrecl=80
key length:6
I demerge records based on key and every 3 bytes after that as next field(data field) after key in output file.


there can be maximum 10 data fields after key in the input file



Input:
Code:

000001ABCDEFGHIJKL
000002MNO
000003PQRSTW


Output:
Code:

000001ABC
000001DEF
000001GHI
000001JKL
000002MNO
000003PQR
000003STW
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: Sat Feb 07, 2009 10:44 pm
Reply with quote

Here's a DFSORT job that will do what you asked for:

Code:

//S1    EXEC  PGM=SORT
//SYSOUT    DD  SYSOUT=*
//SORTIN DD DSN=...  input file (FB/80)
//SORTOUT DD DSN=... output file (FB/80)
//SYSIN    DD    *
  OPTION COPY
  OUTFIL IFOUTLEN=80,
   IFTHEN=(WHEN=(34,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3,/,1,6,13,3,/,1,6,16,3,/,1,6,19,3,/,
     1,6,22,3,/,1,6,25,3,/,1,6,28,3,/,1,6,31,3,/,1,6,34,3)),
   IFTHEN=(WHEN=(31,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3,/,1,6,13,3,/,1,6,16,3,/,1,6,19,3,/,
     1,6,22,3,/,1,6,25,3,/,1,6,28,3,/,1,6,31,3)),
   IFTHEN=(WHEN=(28,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3,/,1,6,13,3,/,1,6,16,3,/,1,6,19,3,/,
     1,6,22,3,/,1,6,25,3,/,1,6,28,3)),
   IFTHEN=(WHEN=(25,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3,/,1,6,13,3,/,1,6,16,3,/,1,6,19,3,/,
     1,6,22,3,/,1,6,25,3)),
   IFTHEN=(WHEN=(22,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3,/,1,6,13,3,/,1,6,16,3,/,1,6,19,3,/,
     1,6,22,3)),
   IFTHEN=(WHEN=(19,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3,/,1,6,13,3,/,1,6,16,3,/,1,6,19,3)),
   IFTHEN=(WHEN=(16,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3,/,1,6,13,3,/,1,6,16,3)),
   IFTHEN=(WHEN=(13,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3,/,1,6,13,3)),
   IFTHEN=(WHEN=(10,3,CH,NE,C' '),
    BUILD=(1,6,7,3,/,1,6,10,3)),
   IFTHEN=(WHEN=(7,3,CH,NE,C' '),
    BUILD=(1,6,7,3))
/*
Back to top
View user's profile Send private message
Escapa

Senior Member


Joined: 16 Feb 2007
Posts: 1399
Location: IL, USA

PostPosted: Sun Feb 08, 2009 6:52 am
Reply with quote

Hey!!!!
Thanks frank......
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 Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Join multiple records using splice DFSORT/ICETOOL 5
Search our Forums:

Back to Top