ypngan Beginner
Joined: 29 Nov 2004 Posts: 8 Topics: 2
|
Posted: Wed Mar 02, 2005 10:01 pm Post subject: Backup and Restore using ADRDSSU |
|
|
Hi all,
Suppose I want to backup files AAA.FILE1 and AAA.FILE2 from VOL111, and AAA.FILE3 and AAA.FILE4 from VOL222. I will issue the following command:
Code: |
//BACKUP EXEC PGM=ADRDSSU
//SYSOUT DD SYSOUT=X
//SYSPRINT DD SYSOUT=Y
//SYSUDUMP DD SYSOUT=Q
//TAPEOUT DD DSN=AAA.BACKUP,DISP=(NEW,CATLG,DELETE),UNIT=CTAPE,...
//SYSIN DD *
DUMP OUTDD(TAPEOUT) CANCELERROR -
DATASET(INCL(AAA.**)) -
COMPRESS SHARE TOL(ENQF) OPT(4) SPHERE
//
|
Is there any way to issue the command so that I can restore the files on their original VOLUME without specifying? (i.e. FILE1 and FILE2 to VOL111 and FILE3 and FILE4 to VOL222)
Thanks.
Franky |
|