|
|
| Author |
Message |
Deepakgoyal2005
New User
Joined: 22 Mar 2007 Posts: 26 Location: Delhi
|
|
|
|
I want to extract all GDG files with an available starting NODE e.g. 'DEAR.TXXXXXX.*' and display the corresponding GDG LIMIT in front of the name.
As :
| Code: |
DEAR.TXXXXXX.YYYY 36
DEAR.TXXXXXX.ZZZZ 40
|
Please provide a JCl for this... |
|
| Back to top |
|
 |
References
|
|
 |
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 3734 Location: Brussels once more ...
|
|
|
|
| Quote: |
| Please provide a JCl for this... |
Please provide 700 euro for tried and tested code.
This is a help forum, not a "do it for me" forum - unless you want to pay for the work others do on your behalf.
Look at SYS1.SAMPLIB(IGGCSIRX) and let us know when you need some help. |
|
| Back to top |
|
 |
Anuj D.
Global Moderator
Joined: 22 Apr 2006 Posts: 2353 Location: Mumbai, India
|
|
|
|
Hi,
I'm in agreement with Expat, may be just fast fingers. In TSO can be an option, you can use this to get GDG limit..
| Code: |
| LISTC ENT('gdg base') ALL |
|
|
| Back to top |
|
 |
vinay249
New User
Joined: 18 Apr 2007 Posts: 11 Location: Bangalore
|
|
|
|
| Could you pls tell me how to execute this to get the GDG limit from the library SYS1.SAMPLIB(IGGCSIRX) |
|
| Back to top |
|
 |
Robert Sample
Senior Member
Joined: 06 Jun 2008 Posts: 1173 Location: Atlanta, GA
|
|
|
|
| Quote: |
| I want to extract all GDG files with an available starting NODE e.g. 'DEAR.TXXXXXX.*' and display the corresponding GDG LIMIT in front of the name. |
Exactly how do you find the GDG LIMIT based on the cataloged files? What if a GDG has a LIMIT of 20 but only has 11 generations cataloged? Are you planning on reporting 11 as the LIMIT? What is the business requirement? You'd probably be better off generating an IDCAMS LISTCAT and parsing the output to find the GDG LIMIT if you really want the LIMIT and not merely the number of cataloged generations.
We've got a number of applications that create generations until a summary processing job runs, at which time all generations are taken in as a group, after which the generations are all deleted. So these applications never have the number of LIMIT generations cataloged, so by your logic they'd never show the correct LIMIT value. |
|
| Back to top |
|
 |
Skolusu
DFSORT Developer
Joined: 07 Dec 2007 Posts: 399 Location: San Jose
|
|
| Back to top |
|
 |
nirenchan
New User
Joined: 21 Jul 2005 Posts: 12 Location: USA
|
|
|
|
You can use REXX and extract the GDG name and limit and write the same to a output dataset.
You can Invoke LISTCAT from within REXX, get the details and pull the limit as well as GDG name into some variable and write the same to output Dataset...in the format that you want.
Regards,
Nirenchan |
|
| Back to top |
|
 |
|
|