View previous topic :: View next topic |
Author |
Message |
Sebanpj Beginner
Joined: 04 Aug 2008 Posts: 9 Topics: 5 Location: BANGALORE
|
Posted: Tue Aug 26, 2008 8:14 am Post subject: How to increase the Space allocated for a PDS |
|
|
Can anyone suggest me any way to increase the space allocated to an existing PDS, ( Any sugestions other than copying the members to a new PDS with more space and deleting the existing PDS) ?
Any TSO commands or anything like that?
Please help.
Thanks in advance. _________________ Thanks and Regards,
Sebastian Joseph |
|
Back to top |
|
|
callanand Beginner
Joined: 12 Jun 2007 Posts: 23 Topics: 2
|
Posted: Tue Aug 26, 2008 9:18 am Post subject: |
|
|
Sebanpj,
Have you tried compressing the PDS.
The compress function recovers wasted space occupied by deleted or updated members (that is, space is made available for re-use).
Go to 3.4 then enter your pds name and put / in the command area and press enter. It will bring you to the panel from where you can perform various functions to the PDS. Look for compress option.
If this doesn't satify your requirement then the only way I can think of is copying it to another PDS and deleting and reallocating the original PDS with more space and copying the members back in from the backup. |
|
Back to top |
|
|
expat Intermediate
Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Wed Aug 27, 2008 10:12 am Post subject: |
|
|
It does rather depend on the current state of the PDS, if it is already in 16 extents then this can not be done without a complete rebuild.
A sneaky little trick .......
Assume PDS is FB 80 with 200 directory blocks, Prim CYL 1 Sec CYL 1
Writing in batch to a PDS can be used to make one off in flight space alterations. But, the dummy member must be quite big to force a secondary space allocation to occur.
Code: |
//SYSUT2 DD DSN=pds.name(dummy),DISP=OLD,
// SPACE=(CYL,(1,200,200)),RECFM=FB,LRECL=80
|
_________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
|
Mervyn Moderator
Joined: 02 Dec 2002 Posts: 415 Topics: 6 Location: Hove, England
|
|
Back to top |
|
|
|
|