No, there is no value in reorgs CA Librarian Master files unless there are a lot of dead blocks in the Master File.
Librarian V4.4
Reorging a CA Librarian Master files is not necessary as CA Librarian does its own space management.
However, if the Master file has a lot of dead blocks, the Master file can be reorged to reclaim the space.
To determine if there are any dead blocks on a Master file, run a Master File Statistical Summary report:
//STEP1 EXEC PGM=AFOLIBR //MASTER DD DSN=YOUR.LIBRARIAN.MASTFILE,DISP=SHR //OSJOB DD DUMMY //LIST DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSIN DD * -OPT INDEX(S) -END /*
Steps to reorg a BDAM or VSAM CA Librarian Master file:
//STEP1 EXEC PGM=AFOLIBR //MASTER DD DSN=YOUR.LIBRARIAN.MASTFILE,DISP=SHR //BACKUP DD DSN=YOUR.LIBRARIAN.MASTFILE.NEW,
// DISP=(,CATLG),
// SPACE=(CYL,(60)),
// UNIT=SYSDA,VOL=SER=XXXXXX
//OSJOB DD DUMMY //INDEX DD SYSOUT=* //LIST DD SYSOUT=* //SYSPRINT DD SYSOUT=* //SYSIN DD * -OPT BKUPDISK,INDEX < For BDAM Master files -OPT BKUPDISK,BLOCKS=nnnn < For VSAM Master files -END /* BLOCKS=nnnnn Specifies the number of VSAM records to initialize. If omitted, only the primary extent space allocation of the data set are initialized. To calculate the maximum number of blocks, use the following equation: physrecs/track x number of tracks = Z Z + ( (primary space/second space) * Z * 117 = BLOCKS The value of primary and secondary space, the value of physrecs/track and number of tracks are obtained from the LISTCAT ENT(libr.vsam.master) ALL command.
Wide Record Master files do not support BKUPDISK. You must use an external PDS utility, such as the IBM IEBCOPY.
Please see the CA Librarian System Services Reference Guide for more information about performing backups of CA Librarian Master files.