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

how to move data from disk to tape via jcl


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

New User


Joined: 20 Oct 2003
Posts: 3

PostPosted: Tue Feb 03, 2004 1:47 pm
Reply with quote

icon_question.gif

hi,

can anybody tell me how move large amount of data present in dasd to tape via jcl as i need to do it frequently.any utilities or standard code will be of great use.
Back to top
View user's profile Send private message
sandip_datta

Active User


Joined: 02 Dec 2003
Posts: 150
Location: Tokyo, Japan

PostPosted: Tue Feb 03, 2004 2:53 pm
Reply with quote

You can do this in following way -
For sequential file -
Code:
//BKUP01   EXEC  PGM=ADRDSSU                                     
//SYSPRINT DD  SYSOUT=*                                             
//SYSDUMP  DD  SYSOUT=*                                             
//SYS000   DD  DSN=TApe DSN....(+1),           
//         UNIT=CART,                                               
//         DISP=(NEW,CATLG,DELETE),                                 
//         LABEL=(1,SL,EXPDT=99000),VOL=(PRIVATE,,,20),             
//         DCB=(SCISYS.MODEL.DSCB,RECFM=VB,LRECL=32756,BLKSIZE=32760)
//SYSIN    DD *
List of DASD Files you need to copy in Tape
/*                                         

For VSAM Backup you should use GVEXPORT instead of ADRDSSU. Use the Record length and format as your own.

Before running the job please created the Bakup Tape GDG version.

Regards,
Sandip.
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 Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
No new posts CA Disk LISTD SQL CA Products 1
Search our Forums:

Back to Top