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

File processing based on Keys


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
b_ravieee

New User


Joined: 13 Feb 2006
Posts: 2

PostPosted: Mon Feb 11, 2013 3:14 am
Reply with quote

Hi,

I have a requirement like,

Input file:

1111 A X A
1111 ZZZZ

2222 B Y B
2222 ZZZZ

3333 C X C
3333 ZZZZ

Output File 1:
1111 A X A
1111 ZZZZ
3333 C X C
3333 ZZZZ

Output File 2:
2222 B Y B
2222 ZZZZ

Could you please advise.
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


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

PostPosted: Mon Feb 11, 2013 3:52 am
Reply with quote

Query: what sort of process do you want?
Query: why post in the JCL section? JCL cannot do anything except tell the computer which program you want to run.

Note: The JCL section also handles Syncsort queries so this would be the correct place to post if you wanted a sort solution AND your sort product is Syncsort.
Back to top
View user's profile Send private message
Gary McDowell

Active User


Joined: 15 Oct 2012
Posts: 139
Location: USA

PostPosted: Mon Feb 11, 2013 4:45 am
Reply with quote

Your requirements are very generic so I’ll reply with my best guess.

Code:
//SORT     EXEC PGM=SORT
//*   …
//SORTIN   DD DISP=SHR,DSN=input.dataset.file
//*
//SORTOF1  DD SYSOUT=*     <--- OUTFIL FILES=1
//SORTOF2  DD SYSOUT=*     <--- OUTFIL FILES=2
//*
//SYSIN     DD *
     SORT FIELDS=(1,4,A),FORMAT=CH
     OUTFIL FILES=1,INCLUDE=(1,4,CH,NE,C'2222')
     OUTFIL FILES=2,INCLUDE=(1,4,CH,EQ,C'2222')
/*
//
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Mon Feb 11, 2013 1:11 pm
Reply with quote

OMIT can be used to avoid a negative test, SAVE can be used so that only one INCLUDE/OMIT is needed.
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Binary File format getting change whi... All Other Mainframe Topics 7
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
Search our Forums:

Back to Top