... >One confusion is why do I have sooooo many partially filled tapes ? I >don't have this many nodes ?
Zoltan, Andy's observations were excellent, as always. I can only add a suggestion to check subject "Shrinking (dwindling) number of available scratch tapes" in ADSM QuickFacts, where I summarize some factors. One classic cause is a tape being needed while one is momentarily unavailable because it is dismounting. I find the following macro very handy in identifying stale partial tapes: /* ADSM macro 'filling' */ /* */ /* To display volumes in Filling state. */ /* */ /* INVOCATION: macro filling */ /* */ /* NOTES: - */ /* */ /* HISTORY: */ /* */ /* 2003/05/06 Written by Richard Sims */ /* */ SELECT STGPOOL_NAME AS " STORAGE POOL ", CHAR(VOLUME_NAME,6) AS "VOLNAME", - PCT_UTILIZED as "PCT UTIL", - DEC(EST_CAPACITY_MB,6) AS "MB_CAPACITY", CHAR(ACCESS,11) AS "ACCESS", - LEFT(CHAR(LAST_WRITE_DATE),19) AS "LAST_WRITE_DATE " - FROM VOLUMES WHERE STATUS='FILLING' ORDER BY STGPOOL_NAME Richard Sims