Beesley, Paul wrote: >I've noticed that the datasets are on tape, so ask myself whether this is even >valid. Trying to back up tape datasets to dummy and then deleting them seems >particularly weird.
... and... > //TAPE1 DD DUMMY > //FILTER DD * > INCL(PBREX.PRJW.**, - > PBREX.PRUFST.CHOICE.AUDIT) - > BY(DSORG,NE,VSAM) - > //SYSIN DD * > DUMP OUTDDNAME(TAPE1) - > DATASET(FILTERDD(FILTER)) - > WAIT(0,0) - > FORCECP(0) - > DELETE PURGE You dump/delete/purge after sending whatever to a DUMMY? Why not use something else to get rid of those GDGs? Using IDCAMS delete or tell your tape management system to delete them? Do you need to use WAIT(0,0) and FORCECP(0) in this case? Last suggestion: >//FILTER DD * > INCL(PBREX.PRJW.**, - > PBREX.PRUFST.CHOICE.AUDIT) - > BY(DSORG,NE,VSAM) - > //SYSIN DD * Remove that '-' after VSAM) ... so the SYSIN is not part of that FILTER DD * Groete / Greetings Elardus Engelbrecht ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
