z/OS DFSMSdss Storage Administration
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Example 3. DUMP DATASET

z/OS DFSMSdss Storage Administration
SC23-6868-01

You can dump individual partitions by using physical processing. Doing might help if you have a swap partition on a particular volume and you only want to back up the native, data holding partitions (there is probably no reason to back-up a swap partition).

Figure 1 shows an example of the JCL.
Figure 1. Sample JCL for DUMP DATASET.
//LXD2J1BB JOB ,'IBMUSER',MSGLEVEL=(1,1),TIME=(5,0),REGION=4096K,
//      MSGCLASS=H,CLASS=A
//STEPT03  EXEC PGM=ADRDSSU
//SYSPRINT DD SYSOUT=*
//SOURCE   DD UNIT=3390,VOL=SER=LNX200,DISP=OLD
//TARGET   DD UNIT=TAPE,VOL=(PRIVAT,SER=111111),DISP=(NEW,CATLG),
//            DSN=TDS.DUMP200,LABEL=(1,SL)
//SYSIN    DD *
 DUMP INDDNAME(SOURCE) OUTDDNAME(TARGET) -
       DATASET(INCLUDE(LINUX.**.NATIVE)) ALLEXCP
/*
You can also dump all of the Linux partitions. Figure 2 shows an example of the JCL.
Figure 2. Sample JCL for dumping all of the Linux partitions.
//LXD2J2BB JOB ,'IBMUSER',MSGLEVEL=(1,1),TIME=(5,0),REGION=0M,
//      MSGCLASS=H,CLASS=A
//STEPT03  EXEC PGM=ADRDSSU 
//SYSPRINT DD SYSOUT=* 
//DASDIN   DD UNIT=3390,VOL=SER=LNX200,DISP=OLD
//DASDOUT  DD UNIT=3390,VOL=SER=D9BIG1,DISP=(NEW,CATLG), 
//            SPACE=(CYL,(4300,1000),RLSE),DSN=TDS.DUMP200
//SYSIN    DD *
 DUMP INDDNAME(DASDIN) OUTDDNAME(DASDOUT) -
       DATASET(INCLUDE(LINUX.**)) CONCURRENT ALLEXCP 
/*

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014