Domanda

i want to use the referenced date of pds/ps in my JCL. is there any way i can do it?

i basically want to delete several ps which have not been referenced in the past 2 months using JCL..

È stato utile?

Soluzione

Use DFDMSdss (PGM=ADRDSSU) for this task. Chapter 9 of the DFDMSdss Storage Administration book describes how to use ADRDSSU to manage DASD space, and has a specific section demonstrating how to delete unused or stale data sets using the DUMP command to a DUMMY DD. Use PARM='TYPRUN=NORUN' during your testing as you tweak your filters.

Altri suggerimenti

reference

//DELETE  EXEC PGM=ADRDSSU,PARM='UTILMSG=YES,TYPRUN=NORUN'
//OUTDD    DD  DUMMY
//SYSPRINT DD  SYSOUT=*
//SYSIN    DD *
DUMp {DATASet | DS}(
               BY((selector,operator,arg){,(selector,operator,arg),...})
                {EXClude(dsn{,dsn,...})} {INClude(dsn{,dsn,...})}
               |
               EXClude(dsn{,dsn,...}) {INClude(dsn{,dsn,...})}
                {BY((selector,operator,arg){,(selector,operator,arg),...})}
               |
               {FILterdd | FDD}(ddn)
               {INDDname | IDD}(ddn) | {INDYnam | IDY}(vol{,unit})
               {OUTDDname | ODD}(ddn{,ddn,...) 
               {DELete}

in the above i can put my condition in the BY clause.. My query now is whether i need to put the file name that has the list of files i need to delete in the INCLUDE clause ?

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top