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

selective copy from the TAPE file


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

New User


Joined: 16 Apr 2005
Posts: 3

PostPosted: Tue Apr 19, 2005 12:08 pm
Reply with quote

Hi,
I want to copy data for a list of policies from a Tape file to a flat file. I can use a sort card but the sort card will be unnecessarily too long. I have a flat file having only the list of policies.
Can anyone guide me how can i Do this using the file instead of the job, Currently I am using JCL as follows:

//CPYSLTTP JOB (FCLA-FCL0000),'SELECTIVE COPY ',
// CLASS=C,MSGCLASS=R,NOTIFY=&SYSUID
//*
//JOBLIB DD DSN=PROD.CLF.LOADLIB,DISP=SHR
// DD DSN=MODL.CLF.LOADLIB,DISP=SHR
//*
//SRTSTEP EXEC PGM=SORT
//SORTIN DD DSN=PLF.NXX.SECURE.POLICY.EOQ.G0023V00,
// DISP=SHR
//SORTOUT DD DSN=F6925.VXX.POLICY.REPRO,
// DISP=(NEW,CATLG,DELETE),UNIT=SYSDA,
// SPACE=(CYL,(2,2)),
// DCB=(LRECL=300,BLKSIZE=32700,RECFM=FB)
//SORTWK01 DD UNIT=SYSDA,SPACE=(CYL,(5,5),RLSE)
//SORTWK02 DD UNIT=SYSDA,SPACE=(CYL,(5,5),RLSE)
//SORTWK03 DD UNIT=SYSDA,SPACE=(CYL,(5,5),RLSE)
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSIN DD *
SORT FIELDS=COPY
INCLUDE COND=(9,7,CH,EQ,C'M291761',OR,9,7,CH,EQ,C'M293720',OR,
9,7,CH,EQ,C'M294632',OR,9,7,CH,EQ,C'M294674',OR,
9,7,CH,EQ,C'M295301',OR,9,7,CH,EQ,C'M295305',OR,
9,7,CH,EQ,C'M500078')
/*
Back to top
View user's profile Send private message
andycool

New User


Joined: 12 Apr 2005
Posts: 64

PostPosted: Tue Apr 19, 2005 7:41 pm
Reply with quote

IEBGENER is one way to copy any dataset.

i cant give u the code but m sure some1 will.
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: Tue Apr 19, 2005 8:37 pm
Reply with quote

Some comments on your current job:

Remove the //SORTWKdd DD statements - work data sets are NOT needed for a COPY, so you're just wasting space.

You can rewrite your INCLUDE statement like this to make it simpler:

Code:

 INCLUDE FORMAT=SS,COND=(9,7,EQ,
  C'M291761,M293720,M294632,M294674,M295301,M295305,M500078')


If you want me to show you how to use DFSORT to select the records using a file with the policy numbers, show me an example of what the records in the policy file and the input file look like, and what you want the output records to look like. If the input file can have records with duplicate policy numbers, show that in the example. Also, what is the RECFM and LRECL of the policy file and the input file?
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: Tue Apr 19, 2005 8:39 pm
Reply with quote

Andy,

IEBGENER can copy a file, but as far as I know, it can't select records in the way Truptib wants to.
Back to top
View user's profile Send private message
Truptib

New User


Joined: 16 Apr 2005
Posts: 3

PostPosted: Wed Apr 20, 2005 9:13 am
Reply with quote

:) Hi guys,
Thanks a lot for your inputs. Thanks for also optimizing my code.
have a nice day,
Trupti
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 FTP VB File from Mainframe retaining ... JCL & VSAM 6
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
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top