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

Substring for 2 files in Sort JCL


IBM Mainframe Forums -> SYNCSORT
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Shubhendu Chakraborty

New User


Joined: 20 Nov 2019
Posts: 3
Location: US

PostPosted: Wed Nov 20, 2019 11:04 am
Reply with quote

Hi,

I have 1 file of 10 bytes, first byte is Key and rest 9 have some value
Ex.

A111111111
B222222222
C333333333

My second file is of 20 bytes, first byte as Key and rest is random value
Ex.

AQWQW111111111ASWQQQ
B222222222QWQEFDFDFRER
CSDFGDFDG333333333FGGG
CFDSFDSFFDSFFSDDSFDSSF
BDFSFDSFFSDFEWREWREEW

My expected result to include records from file 2 which has matching value from file 1 position 2 to 9 bytes with sub string of file 2:

AQWQW111111111ASWQQQ
B222222222QWQEFDFDFRER
CSDFGDFDG333333333FGGG

I tried below but its not working:

JOINKEYS FILES=F1,FIELDS=(1,1,A)
JOINKEYS FILES=F2,FIELDS=(1,1,A)
REFORMAT FIELDS=(F1:1,10,F2:1,20)
SORT FIELDS=(1,10,CH,A)
INCLUDE COND=(12,19,SS,EQ,2,9,CH)
OUTREC=(1:11,20)

Please guide me with the same.
Back to top
View user's profile Send private message
Joerg.Findeisen

Senior Member


Joined: 15 Aug 2015
Posts: 1436
Location: Bamberg, Germany

PostPosted: Wed Nov 20, 2019 3:51 pm
Reply with quote

Couldn't you decide which SORT product you are using or why do you post the same question for DFSORT and SYNCSORT? icon_evil.gif
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2454
Location: Hampshire, UK

PostPosted: Wed Nov 20, 2019 4:31 pm
Reply with quote

How is it not working? JCL error, program error, wrong data returned, something else?
Back to top
View user's profile Send private message
Shubhendu Chakraborty

New User


Joined: 20 Nov 2019
Posts: 3
Location: US

PostPosted: Wed Nov 20, 2019 6:05 pm
Reply with quote

It's giving me error at:

INCLUDE COND=(12,19,SS,EQ,2,9,CH)
*

INCLUDE/OMIT FORMATS INCOMPATIBLE
Back to top
View user's profile Send private message
sergeyken

Senior Member


Joined: 29 Apr 2008
Posts: 2276
Location: USA

PostPosted: Wed Nov 20, 2019 6:56 pm
Reply with quote

Shubhendu Chakraborty wrote:
It's giving me error at:

INCLUDE COND=(12,19,SS,EQ,2,9,CH)
*

INCLUDE/OMIT FORMATS INCOMPATIBLE

1) Do you speak English?
2) If yes, RTFM please. (And then copy here: what exactly have you read?)
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2454
Location: Hampshire, UK

PostPosted: Wed Nov 20, 2019 9:38 pm
Reply with quote

Please post your code using the code tags. As you posted it is saying INCLUDE is in error whereas I can see that it is the 2 after the EQ that is in error.
Back to top
View user's profile Send private message
View previous topic : : View next topic  
Post new topic   Reply to topic All times are GMT + 6 Hours
Forum Index -> SYNCSORT

 


Similar Topics
Topic Forum Replies
No new posts Sort SMF records? SYNCSORT 6
No new posts To Sort detail records in a file with... SYNCSORT 5
No new posts Simplify SORT CARD to combine INREC a... DFSORT/ICETOOL 6
No new posts JCL to merge two files side by side DFSORT/ICETOOL 3
No new posts Sort card to generate the DSN DFSORT/ICETOOL 17
Search our Forums:


Back to Top