Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
how to move data from disk to tape via jcl

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL
Author Message
venkatsrib

New User


Joined: 20 Oct 2003
Posts: 3

PostPosted: Tue Feb 03, 2004 1:47 pm    Post subject: how to move data from disk to tape via jcl
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
References
PostPosted: Tue Feb 03, 2004 1:47 pm    Post subject: Re: how to move data from disk to tape via jcl Reply with quote

sandip_datta

EXPERT


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

PostPosted: Tue Feb 03, 2004 2:53 pm    Post subject:
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
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL All times are GMT + 6 Hours
Page 1 of 1