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

Issue with ICETOOL


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

New User


Joined: 12 Dec 2005
Posts: 13

PostPosted: Mon Mar 22, 2010 5:06 pm
Reply with quote

Hi Frank,

I having two input files. One input is having record length 80 of type FB. Second file is having Record length as 27162 of type FB.

Key value from the input file 1 : Start position 1 and length is 7.
Key value from the input file 2 : Start position 2 and length is 7.

I want to compare File 1 and File 2 based on Key value. If the record is available in the both file I want the Second file record in the Output file.

My system does not support SYNC SORT and SYNC TOOL. I am trying SPLICE option in ICETOOL but not successful.

SYNTAX form SYNC SORT is:

SORT FIELDS=COPY
JOINKEYS FILE=F1,FIELDS=(1,7,A),SORTED
JOINKEYS FILE=F2,FIELDS=(2,8,A),SORTED
JOIN UNPAIRED,F1,F2
OPTION COPY
Back to top
View user's profile Send private message
Escapa

Senior Member


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

PostPosted: Mon Mar 22, 2010 5:17 pm
Reply with quote

Are there duplicates in the files?
It would be great if you could show sample input and expected output..

Also seeing your older posts,
Some time you have asked DFSORT solutions and some times SYNCSORT so again you need to confirm sort product you are using.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Mon Mar 22, 2010 5:19 pm
Reply with quote

This is a link to the DFSORT smart tricks documentation which has many examples of matching records.
Please click HERE to access it.

Because the solution for sort related questions may vary from product to product, please ensure that you state clearly which sort product you are using.

If you are not sure, then by running a simple sort step shown below, you will be able to find out for yourself.

If the messages start with ICE then your product is DFSORT. Please also post the output of the complete line which has a message code ICE201I, as this will enable our DFSORT experts to determine which release of DFSORT that you have installed. This may also affect the solution offered.

If the messages start with WER or SYT then the product is SYNCSORT and the topic will be moved into the JCL forum by one of the moderators. Please also post the information telling which version of SYNCSORT is installed, as this may also affect the solution offered.

Thank you for taking your time to ensure that the valuable time of others is not wasted by offering inappropriate solutions which are not relevant due to the sort product being used and/or the release that is installed in your site.

Code:
//SORTSTEP EXEC PGM=SORT
//SYSOUT   DD SYSOUT=*
//SORTIN   DD *
ABC
//SORTOUT  DD SYSOUT=*
//SYSIN    DD *
  SORT     FIELDS=COPY
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: Mon Mar 22, 2010 10:50 pm
Reply with quote

vsrao_2k,

DFSORT supports JOINKEYS. If you don't have the Nov, 2009 PTF for JOINKEYS, ask your System Programmer to install it (it's free). For more information, see:

ibmmainframes.com/viewtopic.php?t=45147

If you don't have that PTF and can't get your System Programmer to install it, run the following DFSORT job and post the //SYSOUT messages so I can see what level you're at:

Code:

//S1    EXEC  PGM=SORT               
//SYSOUT    DD  SYSOUT=*             
//SORTIN DD *                         
RECORD                               
//SORTOUT DD DUMMY                   
//SYSIN    DD    *                   
  OPTION COPY                         
/*                                   


Also, show an example of the records in each input file (relevant fields only) and what you expect for output. Explain the "rules" for getting from input to output. Give the starting position, length and format of each relevant field. Give the RECFM and LRECL of the input files. If file1 can have duplicates within it, show that in your example. If file2 can have duplicates within it, show that in your example.
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 SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Shift left VB record without x00 endi... DFSORT/ICETOOL 11
No new posts how to calculate SUM value for VB fil... DFSORT/ICETOOL 1
No new posts how to calculate SUM for VB file usin... JCL & VSAM 1
No new posts Null values are considered in Total c... DFSORT/ICETOOL 6
Search our Forums:

Back to Top