View previous topic :: View next topic |
Author |
Message |
mf_user Intermediate
Joined: 01 Jun 2003 Posts: 372 Topics: 105
|
Posted: Fri Aug 15, 2008 11:03 am Post subject: Find GDG Limit on many datasets. |
|
|
Hi,
The customer wants to reduce LIMIT parameter on GDGs used in production jobs to save DASD cost. We have 328 jobs using GDGs but don't know the LIMIT on each one of them.
Of course, we can use File-Aid or LISTCAT if it is one or two GDGs but here the volume is large.
Is there any way to figure out the LIMIT parameter of 1000+ GDGs by JCL way or something else?
Please help.
TIA. _________________ MF
==
Any training that does not include the emotions, mind and body is incomplete; knowledge fades without feeling.
== |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
|
Back to top |
|
|
mf_user Intermediate
Joined: 01 Jun 2003 Posts: 372 Topics: 105
|
Posted: Fri Aug 15, 2008 11:25 am Post subject: multiple entries |
|
|
Kolusu,
Thanks for the help. I have actually found that solution before raising my question in the forum. Since, I have 1000+ GDGs to do, I was not getting how to accommodate them in LISTCAT command. All my GDGs are having different naming conventions and don't start in a standard way. Also, the GDGs we have are not having same number of nodes (qualifiers). Few have three, few have four and few have seven.
Please suggest. _________________ MF
==
Any training that does not include the emotions, mind and body is incomplete; knowledge fades without feeling.
== |
|
Back to top |
|
|
mf_user Intermediate
Joined: 01 Jun 2003 Posts: 372 Topics: 105
|
Posted: Fri Aug 15, 2008 11:28 am Post subject: How they appear in my system |
|
|
Kolusu,
Sample GDG base we have in our system:
Code: |
GAMMA.XM1DT.PXWD.TRELIX.HRDS
FENOL.TM0BP.J0KT.BEDTLMT
MACKR.JELBU.J1PE.WOODQSTS.RENT2500
|
Like above we have 1000+ entries.
Please suggest _________________ MF
==
Any training that does not include the emotions, mind and body is incomplete; knowledge fades without feeling.
== |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Fri Aug 15, 2008 11:40 am Post subject: |
|
|
mf_user,
Just include all the GDG base names individual as follows in step010
Code: |
//SYSTSIN DD *
LISTCAT ENT('GAMMA.XM1DT.PXWD.TRELIX.HRDS') ALL
LISTCAT ENT('FENOL.TM0BP.J0KT.BEDTLMT') ALL
LISTCAT ENT('MACKR.JELBU.J1PE.WOODQSTS.RENT2500') ALL
....
your 1000 entries
|
_________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
mf_user Intermediate
Joined: 01 Jun 2003 Posts: 372 Topics: 105
|
Posted: Fri Aug 15, 2008 11:45 am Post subject: wow |
|
|
Wow........that is very nice suggestion.
Thanks for immediate reply.
Bye. _________________ MF
==
Any training that does not include the emotions, mind and body is incomplete; knowledge fades without feeling.
== |
|
Back to top |
|
|
expat Intermediate
Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Sat Aug 16, 2008 5:24 am Post subject: |
|
|
If the aim of the exercise is to retain the generations but not on DASD then the best approach would be to discuss your requirement with the people responsible for the DFSMS subsystem. A very simple change will automatically migrate the unwanted generations every day, and will not need any extra manipulation for new dataset names that may occur. _________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
|
|
|