CA TLMS : VMF allocated as mutli-volume
search cancel

CA TLMS : VMF allocated as mutli-volume

book

Article ID: 102995

calendar_today

Updated On:

Products

TLMS Tape Management

Issue/Introduction



The CA TLMS Volume Master File (VMF)  is a BDAM file which can be accessed through programs TLMSVMRW and TLMSVMIO. The file contains multiple record types, with related records chained together. Volume records can be accessed by an internal index structure.
The Volume Master File consists of a 500-byte record for each volume in the tape library. The name, number, status and characteristics of each data set in the tape library are maintained in this file.
The VMF dimension is strictly related to the number of VOLUMEs and AUXILIARY RECORDS defined during its allocation. It is usually allocated as a single volume dataset but when it reaches the maximum single volume allocation of 64K tracks, due to new volumes and AUX records added, is it possible to have it extended as a multi-volume dataset? 

Environment

Z/OS - CA TLMS 

Resolution

As BDAM access method is used for VMF. this access method can not be used with DSNTYPE=LARGE datasets. For this reason a VMF can not be allocated as a DSNTYPE=LARGE dataset.
So,  if it reaches the maximum single-volume allocation of 64K tracks and it needs to be expanded due to new Volumes and AUX Records added, it is possible to allocate it as a multi-volume dataset.

Here a sample allocation jcl that can be used to accomplish this: 

//ALLMVMF JOB (......................... 
//NEWVMF EXEC PGM=IEFBR14 
//VMF DD DISP=(,CATLG),SPACE=(CYL,(4000,4000),,CONTIG), 
// DCB=(BLKSIZE=5000,LRECL=500,RECFM=FB), 
// UNIT=3390, 
// VOL=(,,,2,SER=(VMF001,VMF002)), 
// DSN=CAI.TLMS.MULTIVOL.VMF 
//* 
// 

Since TLMSVMRW uses standard IBM READ/WRITEs to the VMF,  the normal CATVMFx utilities can be used to manage this multi-volume VMF.