We currently backup some of our data to tapes (virtual, not physical) and I am needing to read and pull information from those tapes. Currently we are using JCL with a DD statement for each Vol/Ser that looks like:
//VOLSERO DD DSN=DWP.PROD.****.TAPE,
// DISP=SHR,
// UNIT=CCLOCAL,
// VOL=SER=(R94188)
//*
// DD DSN=DWP.PROD.****.TAPE,
// DISP=SHR,
// UNIT=CCLOCAL,
// VOL=SER=(R94438)
Each week we drop 1 tape and add a new one as we are backing up new records. Is it possible to read through all of the tapes for that dataset without entering the Vol/Ser or will every tape require it's own DD statement?