Does PDSMAN have a program that will list the information of a dataset like DCB, Volume, space allocated and used?
search cancel

Does PDSMAN have a program that will list the information of a dataset like DCB, Volume, space allocated and used?

book

Article ID: 38140

calendar_today

Updated On:

Products

PDSMAN

Issue/Introduction

Does PDSMAN have a program that will list the information of a dataset like DCB, Volume, space allocated and used?
 

Environment

Release: PDSMAN PDS Library Management 7.7

Resolution

The PDSMAN program EZYEDIT can produce this information. It can be run in batch or can be used online.

Batch example below:
//* 
//BATEE EXEC PGM=PDSEASY 
//EZYPRINT DD SYSOUT=* 
//SYSPRINT DD SYSOUT=* 
//* 
//SYSIN DD * 
ERROR NOFLUSH 
* start a dataset list 
DSL SYS1.LINKLIB 
* include another dataset 
I SYS1.PARMLIB 
* include more datasets 
I SYS2.* 
* report dataset information for each dataset in list 
HC MAX 
END 
//*