Claude,

If your shop has IBM's Filemanager you can use the following job which will 
list the datasets based on the size.  You can then filter out datasets using 
DFSORT that exceed a certain size

//STEP0100 EXEC PGM=FILEMGR
//SYSPRINT DD SYSOUT=*
//SYSIN    DD *
$$FILEM DVT ,
$$FILEM VOLSER=*,
$$FILEM DSNAME=**,
$$FILEM VOLSTATE=ALL,
$$FILEM UNIT=*,
$$FILEM DEVTYPE=*,
$$FILEM SMSGROUP=xxxxx,        <<< Your storage group name
$$FILEM DATEFORM=YYMMDD,
$$FILEM DSNREPEAT=NO,
$$FILEM SUMMARY=NO,
$$FILEM COMBINE=YES,
$$FILEM SORTDSNBY=SIZE,
$$FILEM SORTVOLBY=USTRK
/*

Thanks,
Kolusu



----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to