I need to read large SAS data sets stored on tape in Z/OS that are spread across multiple tapes. I am not in a position to move this data off tape and to store it on our DASD storage on our mainframe.
I am wondering does SAS 9.4 on Z/OS have a limitation to the number of tapes it can utilize when accessing a dataset spread over multiple tapes?
Currently when accessing a SAS dataset that is spread over multiple tapes I declare a libref similar to this:
libname mf v9tape 'mainframe dataset name';
I have been able to successfully read dataset that are spread across multiple tapes this way problem free.
Reading more about the libref statement there is a volser
option that I could use the declare which tapes are required, however as per the documentation utilizing this option limits me to utilizing no more than 30 tapes. I am wondering if I do not use this option will SAS apply the 30 tape limit to this statement as it would if I utilized the volser
option?