Home      Mainframe Forum      Mainfarme Tutorials      IBM Manuals      Mainframe Interview Questions      Mainframe Books      IT News     SiteMap     Downloads


     
 
MAINFRAME - TIP OF THE DAY : programming pearls - The fastest algorithm can frequently be replaced by one that is almost as fast and much easier to understand.

Google
 
Web mainframegurukul.com

Welcome to the mainframegurukul forums.

You are currently viewing our mainframe forums as a guest which gives you limited access to view most discussions, articles. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support at admin@mainframegurukul.com


SYNCSORT - Column Merge

 
Post new topic   Reply to topic    mainframegurukul.com Forum Index -> DFSORT , ICETOOL & Utilities
  View previous topic :: View next topic  
Author Message
syamshankar
Member


Joined: 16 Jan 2007
Posts: 1

PostPosted: Tue Jan 16, 2007 5:08 am    Post subject: SYNCSORT - Column Merge Reply with quote

Hi,

I would like to merge two files.
For ex. FILE-A has two fields like SSN and Year-to-date-contribution.
FILE-B has two fields like SSN and Quarterly-Contribution.

FILE-A
-------

101010101 1000.78
202020202 2000.13

FILE-B
--------
101010101 1004.78
202020202 2010.13


Now, i have to do the calculation like Year-to-date-contribution (-) Quarterly-contribution based on the SSN.

i.e., my output would contain SSN and TALLY fields.


FILE-C
--------
101010101 0004.00
202020202 0010.00



Can you please give your valuable inputs in this.


Thanks in advance
Syam
Back to top
View user's profile Send private message

Veera
Moderator


Joined: 22 Feb 2006
Posts: 111

PostPosted: Sat Jan 20, 2007 5:20 am    Post subject: SYNCSORT - Column Merge Reply with quote

Syam

First let me explain how i understood your requirement, and coded the JCL.If my understanding is wrong please correct me.

Say I have 2 input files , where i am considering first 2 bytes as my key

10 01 -> FILEA REC

10 19 -> FILEB REC

In step01 of my jcl i would generate a new FILEC which has data like

10 01 19 -> FILEC REC ( Ideally i am trying to build one rec for each key)

And then in step2

I would subtract 19 from 01 and genrate a new file FILED which has data

10 18 ----> FINAL OUTPUT.

Please find the JCL for the same below.

//TESTJCLX JOB (AAAA,04,T,0000),'SORTT',CLASS=C,MSGCLASS=T,
// NOTIFY=AAAAA
//*
/*JOBPARM L=9999
//*
//JOBLIB DD DSN=AAAA.PPROD.LOAD,DISP=SHR
//*
//STEP01 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//*
//IN1 DD *
10 01
//*
//IN2 DD *
10 19
//*
//TMP1 DD DSN=AAAA.TEST.TEMP,
// DISP=(MOD,PASS),
// UNIT=SYSDA,
// SPACE=(CYL,(1,2),RLSE),
// DCB=(RECFM=FB,BLKSIZE=0)
//OUT DD DSN=AAAA.TEST.SPLOUT,
// DISP=(,CATLG,DELETE),
// UNIT=SYSDA,
// SPACE=(CYL,(1,2),RLSE),
// DCB=(RECFM=FB,LRECL=8,BLKSIZE=800)
//LIST1 DD SYSOUT=*
//TOOLIN DD *
COPY FROM(IN1) TO(TMP1) USING(CPY1)
COPY FROM(IN2) TO(TMP1) USING(CPY2)
SPLICE FROM(TMP1) TO(OUT) ON(1,2,CH) WITH(7,2)
//CPY1CNTL DD *
OUTREC FIELDS=(1:1,2,4:4,2,7:2X)
//CPY2CNTL DD *
OUTREC FIELDS=(1:1,2,7:4,2)
//*
//STEP02 EXEC PGM=ICETOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//*
//IN1 DD DSN=AAAA.TEST.SPLOUT,
// DISP=SHR
//*
//OUT DD DSN=AAAA.TEST.SPLOUT1,
// DISP=(,CATLG,DELETE),
// UNIT=SYSDA,
// SPACE=(CYL,(1,2),RLSE),
// DCB=(RECFM=FB,LRECL=5,BLKSIZE=500)
//LIST1 DD SYSOUT=*
//TOOLIN DD *
COPY FROM(IN1) TO(OUT) USING(CPY1)
//CPY1CNTL DD *
OUTFIL FNAMES=OUT,
BUILD=(1,3,(7,2,ZD,SUB,4,2,ZD),EDIT=(TT),SIGNS=(+,-))

Note : This jcl can be modified as per your LRECL of files and field
positions.

Thanks
Veera.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    mainframegurukul.com Forum Index -> DFSORT , ICETOOL & Utilities All times are GMT + 5 Hours
Page 1 of 1



 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Related topics
 Topics   Replies   Author   Views   Last Post 
No new posts pls give me the answers for the following interview quesions 10 abcdef1234 9562 Wed Apr 21, 2010 10:06 am
phanindra View latest post
No new posts Many JCL statements contain specific values designed to dire 1 Krishna 1216 Tue May 12, 2009 5:39 pm
Krishna View latest post
No new posts give me a code to reverse a COBOL string. 2 mainframe5 6249 Sat Feb 16, 2008 4:14 am
DavidatK View latest post
No new posts pls give me answers these are may help for jobhunters.. 1 abcdef1234 3643 Sat Sep 15, 2007 3:30 am
DavidatK View latest post
No new posts CICs 5 vidhya 6265 Fri Nov 17, 2006 12:13 pm
hari.paramasivam View latest post
 



This widget requires Flash Player 9 or better








Go to top of the page
 

Online ABEND Reference ||  JCL References ||  COBOL References ||  VSAM References ||  Tutorials by Drona Series ||  SQL tutorial ||  BOOKS  ||  DB2 INTERVIEW QUESTIONS ||  COBOL INTERVIEW QUESTIONS  ||  JCL INTERVIEW QUESTIONS ||  JCL2 INTERVIEW QUESTIONS ||  VSAM INTERVIEW QUESTIONS ||  CICS INTERVIEW QUESTIONS  ||  Online tutorials ||  Online ABEND Reference ||  JCL References ||  COBOL References ||  VSAM References ||  Tutorials by Drona Series ||  SQL tutorial ||  BOOKS  ||  SiteMap  ||  Expeditor Tutorial  ||  FILE-AID Tutorial  ||  Changeman Tutorial  ||  COBOL   ||  DB2   ||  JCL  ||  CICS  ||  VSAM  ||  DB2 Interview Questions ( 110 )   || Simple JCL Tutorials  || JCL Tutorial from MainframeGurukul.com   || Simple JCL Tutorial - Chapter1 ;|| Mainframe Forum - Tutorials  || Mainframe Tutorials

Drona Educational Forums - Mainframe Cobol DB2 CICS Board
Powered by phpBB