IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Question about changing stogroup ACS in flight;


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Michael Bieganski

New User


Joined: 31 Jul 2007
Posts: 6
Location: Chicago

PostPosted: Wed Sep 28, 2011 10:47 pm
Reply with quote

Hello,
We have an old ACS routine that directs datasets to
3 specific stogroups based on the ds size.
The stogroups are for small, medium and large
datasets.
There are 10 volumes currently in the small stogroup, (PDPPS90),
and 10 volumes in the medium stogroup, (PDPPM90).
There are DB2 vsam datasets, defined as multi-volume, on all.

What we wish to do is consolidate all 3 stogroups into one, so that we only
have the one large stogroup, (PDPPL90), and eventually, via
DB2 reorgs, have the DB2 vsam datasets that are in
the small and medium stogroup move naturally into the large
stogroup.

We have DISNEWed the 10 vols in both the small and
medium pools and our storage guy has changed the ACS routine
from this:

WHEN (&STORCLAS = 'PDPPA')
SELECT
WHEN (&SIZE > 406MB)
SET &STORGRP = 'PDPPL90'
WHEN (&SIZE > 82MB)
SET &STORGRP = 'PDPPM90'
OTHERWISE
SET &STORGRP = 'PDPPS90'

to now look like this:

WHEN (&STORCLAS = 'PDPPA')
SELECT
SET &STORGRP = 'PDPPL90'

So, going forward all will go to the
large stogroup (PDPPL90).

My fear is that, while waiting for the DB2
reorgs to occur and move the dsns, a DB2 dataset on one of the DISNEWed
volumes may need to extend to want to go onto a 2nd volume.

Question: Given a db2 dataset on a DISNEWed volume
that is in the small or medium stogroup, and needs to extend to another volume,
Will it extend without issue to one of the large stogroup's volumes??
Or will it fall on its sword with some type of "candidate
volume unavailable error"?

My rookie idea is to allow those small and medium
stogroup volumes to remain DISNEWed, but to change
the ACS to be:
WHEN (&STORCLAS = 'PDPPA')
SELECT
WHEN (&SIZE > 406MB)
SET &STORGRP = 'PDPPL90'
WHEN (&SIZE > 82MB)
SET &STORGRP = 'PDPPM90','PDPPL90'
OTHERWISE
SET &STORGRP = 'PDPPS90','PDPPL90'

and thus, with PDPPM90 and PDPPS90 disnewed,
any DB2 datasets that go to another volume will
go to PDPPL90 automatically without issue???

Am I correct in my ACS thinking?
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Sat Oct 01, 2011 3:17 pm
Reply with quote

So long since I've had to do this, but can you not remove the DISNEW volumes from one storgrp and then add it into the big dataset pool
Back to top
View user's profile Send private message
Michael Bieganski

New User


Joined: 31 Jul 2007
Posts: 6
Location: Chicago

PostPosted: Sun Oct 02, 2011 3:33 am
Reply with quote

IBM provided some feedback....Re-enable the volumes, and with the ACS storgroup change we made, no more NEW datasets will go to the S90 or M90. Allow the db2 reorgs to naturally move the existing volumes off to the L90 pool and to address the issue of should any of the existing db2 multi-volume eligible datasets need to extend to an extra volume,
go into the ACS panels and amend the S90 and M90 storgroups by adding
the L90 storgroup to them in the Extend SG Name field.
Thus...all new datasets go to L90 thanks to the ACS storgroup routine and
any extensions of the datasets still on S90 or M90 volumes will likewise go to an L90 volume thanks to the Extend SG Name setting.
Once those existing dsn's on S90 and M90 move off via the DB2 reorgs, and they empty out, we can then disnew them, re-init them to our spare pool and blow away the then obsolete S90 and M90 storgroups
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts changing defaults in db2 admin - Unlo... DB2 0
No new posts Question for file manager IBM Tools 7
No new posts question for Pedro TSO/ISPF 2
No new posts question on Outrec and sort #Digvijay DFSORT/ICETOOL 20
No new posts panel creation question TSO/ISPF 12
Search our Forums:

Back to Top