Does CA Librarian have a list of the Master files
search cancel

Does CA Librarian have a list of the Master files

book

Article ID: 130125

calendar_today

Updated On:

Products

Librarian

Issue/Introduction

Does CA Librarian have a list of the Master files?  
Looking for a list or way to identify all the Librarian Master files used

Environment

Release:
Component: LIBR

Resolution

CA Librarian does not have a central control file or database that identifies the Master files. 

Hopefully, some sort of name convention has been used and incorporated MAST into the data set names. 

You can run a Master Index report like this to verify if a data set is a Librarian Master file or not:
//INDEX    EXEC PGM=AFOLIBR,PARM='NRJS,NJTA'                  
//SYSPRINT DD  SYSOUT=*                                       
//INDEX    DD  SYSOUT=*                                       
//MASTER   DD  DISP=SHR,DSN=dataset.to.check     
//OSJOB    DD  DUMMY                                          
//SYSIN    DD  *                                              
-OPT INDEX(S)                                                 
-END                                                          
//*