The Best (and Last?) GDG to GDGE Conversion Method



(Repost from April 7, 2020)

The saga of GDG to GDGE continues...for one last time.

This article is about an update on converting GDGs to GDGEs. I've talked about this a couple of times - with the help of one our good friends, Mr. Catalog (Steve Branch, from DFSMS) - and we've got some more information to share. I did talk about this at the SHARE conference in Ft. Worth, and I wanted to share this with a wider audience. This is turning out to be one of my pet projects, and with good reason.  I think GDGEs are a great function and would like to see more people use them. 

First, as you might have followed from a prior article ( Marna's Musing March 2017 ), there was no direct and easy way to convert a GDG to a GDGE. Steve had provided us some of the inside problems on why that is so. However, just because I haven't discussed this in a while doesn't mean that a very helpful customer hasn't been thinking about how to solve this problem! In fact, this nice customer has been talking with Steve, and they have done some testing and we now have a new method to do these conversions.

And the beauty of this solution is that there is none of the unpleasant restrictions that we had on the other methods. Seems like folks are really interested in converting GDGs to GDGEs, which thrills me, as I love to see new(-ish) functions being exploited by users!

Let's start at the beginning, for those that haven't been following this soap opera:

In z/OS V2.2, GDGE (GDG Extensions) were introduced. The limit on the number of GDGs is 255 - due to a 1 byte catalog field called the GDGLIMIT. We can now call these GDGs "classic GDG", since we have a new kind. GDGE can support 999 generations - using a 2 byte catalog field called GDGLIMTE.

You've got to be positioned to start using GDGEs, as you need to make sure your applications know to use the field GDGLIMTE (instead of GDGLIMIT) when dealing with GDGEs. Thankfully, the Generic Tracking Facility is a big help here. By default, the GDGE capability is not turned on, as to ensure that you control when your applications are ready to use GDGEs.

Originally, we had a couple of ways to convert GDGs to GDGEs:

1. Marna’s original method worked only on SMS-GDG’s. Migrated data sets were ok, but they were recalled, and tape data sets were not supported.  The method was a six step process using IDCAMS ALTERs with temporary GDGs.
2. Steve introduced an improvement that handled non-SMS-GDGs by using TSO RENAMEs, but could not handle tape data set and still resulted in data sets being recalled. There were still six steps, and a REXX program could help (thanks to customer Richard Jakobek, from the UK, which he shares here !).
.
Which brings us to now.  We have what is the best conversion method so far, a third method contributed by another customer. This method uses REPRO MERGECAT with a temporary catalog. It works with SMS-GDG and non-SMS GDGs, tape data sets, and  does not recall the data sets.  Steve shared the job he used for testing it, and Marna has been playing around with it and found it to be very helpful. This method still is multi-step, but runs pretty quickly. Let's look at the meaty part of this job:

In this example here "tps_gdg" is the name of the GDG you want to convert:

1.  Define a temporary usercat. This will be used to store hold the GDGs that you want to convert:

DEFINE UCAT(NAME (temp_cat) STORCLAS(STANDARD) CYL (1 1))

2.  REPRO the classic GDGs into the temporary usercat. Note that the data sets are not recalled, and are removed from the original usercat where they resided:

REPRO INDATASET(original_cat) OUTDATASET(temp_cat) ENTRIES(tps_gdg) MERGECAT

3. Define the GDGEs, and use the same name as they were in the original catalog:

DEFINE GDG(NAME(tps_gdg) EXTENDED LIMIT(999) SCRATCH PURGE)

4. Move the selected GDGE data sets from the temporary catalog into the original catalog. Note the data sets are not recalled, and the GDG name itself remains in temp_cat:

REPRO INDATASET(temp_cat) OUTDATASET(original_cat) ENTRIES(tps_gdg.*) MERGECAT

If you are interested in giving this a try, I'm going to put two sample JCL jobs below: one sets up some GDGs for testing, and the other actually does the conversion. These are the jobs that Steve and I have used to feel comfortable about using this conversion method.

I hope this soap opera for conversions is now over, with this very helpful third method.  Enjoy those 999 generations :).  

Comments