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

how to copy one month old data from tape drive


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

New User


Joined: 22 Aug 2006
Posts: 17
Location: India Kolkata

PostPosted: Tue Aug 22, 2006 10:50 am
Reply with quote

Hi,
I came across a new concern where I need to copy one month old data
from tape drive. Can anyone give a sample JCL or is there any other
way. I don't have much idea of tape drives and how they work.

Thanks,
JRY
Back to top
View user's profile Send private message
shreevamsi

Active User


Joined: 23 Feb 2006
Posts: 305
Location: Hyderabad,India

PostPosted: Tue Aug 22, 2006 11:28 am
Reply with quote

hi j_rymbei,

Where exactly you need to copy the tape dataset.... If you wan to copy a dataset from tape to DASD?? Just use simple sort with option=copY in SYSIN and the output dataset is where you wan the dataset.(dasd).

This is what you wan???

~Vamsi
Back to top
View user's profile Send private message
j_rymbei

New User


Joined: 22 Aug 2006
Posts: 17
Location: India Kolkata

PostPosted: Tue Aug 22, 2006 11:55 am
Reply with quote

exactly...thankx..can you send me any sample JCL
Back to top
View user's profile Send private message
annujp

New User


Joined: 31 Aug 2005
Posts: 39
Location: St Paul,MN

PostPosted: Tue Aug 22, 2006 12:29 pm
Reply with quote

Hi...this mite help icon_biggrin.gif
Code:

//JS020   EXEC PGM=SYNCSORT                                 
//SORTMSG   DD SYSOUT=*                                                                   
//SORTIN    DD DISP=SHR,DSN=[b]<<Tape dataset name>>[/b]
//SORTOUT   DD DSN=[b]<<Dataset name in DASD>>[/b],       
//             DISP=(NEW,CATLG,DELETE),                     
//             UNIT=(,20),                                 
//             SPACE=(CYL,(10,10),RLSE),                 
//             DCB=(RECFM=FB,LRECL=516,BLKSIZE=0),                         
//SYSIN     DD *                                           
    SORT FIELDS=COPY                       
 END                                                       
//*                             


U can use this JCL.
Since the dataset is in Tape, the number of records might be large. So its better to calculate the number of records and allocate the number of cylinders in DASD accordingly. Also dont forget to change the LRECL and RECFM.
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 Store the data for fixed length COBOL Programming 1
No new posts Populate last day of the Month in MMD... SYNCSORT 2
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts VB to VB copy - Full length reached SYNCSORT 8
Search our Forums:

Back to Top