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

Copy identical records of PS1 & PS2 to PS3


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

New User


Joined: 07 May 2005
Posts: 9
Location: Duluth, US

PostPosted: Wed Oct 12, 2005 8:28 am
Reply with quote

i am having 2 ps say PS1 & PS2, both are having 10 records each, but in that records 3 are identical in both ps,now i want to copy that identical records to another ps say PS3 only through JCL. Can anyboby help me plz?
Back to top
View user's profile Send private message
Rupesh.Kothari

Member of the Month


Joined: 27 Apr 2005
Posts: 463

PostPosted: Wed Oct 12, 2005 12:45 pm
Reply with quote

Hi,

Quote:
i want to copy that identical records to another ps say PS3 only through JCL


Try following code, you will get all identical records in PS3.


Code:
//PSTEP01      EXEC PGM=SORT
//SORTIN        DD DSN=PS1,DISP=shr
//                   DD DSN=PS2,DISP=shr
//SORTOUT     DD DSN=<output dataset-1>,
//                   DISP=(new,catlg,delete)
//SORTXSUM   DD DSN=PS3
//                   DISP=(new,catlg,delete)
//SYSIN           DD *
                      SORT FIELDS=(1,10,CH,A)
                      SUM  FIELDS=NONE,XSUM
/*
//SYSOUT        DD SYSOUT=*
//SYSUDUMP    DD SYSOUT=*


Hope this helps

Regards

Rupesh
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: Wed Oct 12, 2005 8:04 pm
Reply with quote

Quote:
3 are identical in both ps,now i want to copy that identical records to another ps say PS3


It's not clear what you want to do for the 3 identical records. Do you want to copy all 3 records to PS3, or do you want to copy just the second and third record (but not the first) to PS3, or what? Are there matches and non-matches between PS1 and PS2? If so, what do you want to do about the matches and non-matches? Are there matches within PS1 or PS2? If so, what do you want to do about the matches within each file?

Please show an good example of the records in each input file and what you want the output file (or files?) to look like. Don't make us guess what you want.
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 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 VB to VB copy - Full length reached SYNCSORT 8
Search our Forums:

Back to Top