Alias to non-vsam Dataset



Ask about System customization & performance, Workload management, I/O device configuration etc.

Alias to non-vsam Dataset

Postby jaggz » Mon Oct 15, 2012 4:29 pm

Hi All,

I am trying to understand a new Installation where I come through the below JCL of pointing a alias to a NONVSAM dataset.

DEL SYS1.xxx.LINKLIB ALIAS CAT(ICF.LTS.USERCAT)  -----------> step 1
DEF ALIAS (NAME(SYS1.DB14.LINKLIB) -            ------------------------> step 2
    REL('SYS1.xxx.xxxc.BZI0LOAD'))     


from the above step 1 I understand that we delete alias entry SYS1.xxx.LINKLIB from ICF.LTS.USERCAT and in the next step 2 : We define alias SYS1.xxx.LINKLIB relating to 'SYS1.xxx.xxxc.BZI0LOAD'.

But When i do a Listcat against the alias "SYS1.xxx.LINKLIB" I get the below Result :

ALIAS --------- SYS1.xxx.LINKLIB       
     IN-CAT --- ICF.LTS.USERCAT           
     HISTORY                               
       RELEASE----------------2           
     ASSOCIATIONS                         
       NONVSAM--'SYS1.xxx.xxxc.BZI0LOAD'


Now My question is when we have deleted the alias SYS1.xxx.LINKLIB from ICF.LTS.USERCAT then why does it shows again on the LISTCAT output ? Does it mean that the CAT keyword is taken as default in the step 2 ? Could someone please enlighten the technical reason of defining a ALIAS to a NON VSAM dataset in the installation ?

Jaggz
User avatar
jaggz
 
Posts: 356
Joined: Fri Jul 23, 2010 8:51 pm
Has thanked: 8 times
Been thanked: 5 times

Re: Alias to non-vsam Dataset

Postby Robert Sample » Mon Oct 15, 2012 6:10 pm

From the AMS for Catalogs manual in the DFSMS bookshelf, chapter 12 on DEFINE ALIAS:
The DEFINE ALIAS command defines an alternate name for a non-VSAM data set or a user catalog.
You do not indicate when the LISTCAT is being done, and the implication (not explicitly stated) is that xxx is DB14 in your post. If so, then one step deletes the alias and the next step defines the same alias -- so LISTCAT would continue to show the ALIAS unless you did the LISTCAT between step 1 and step 2 of the job. If xxx is not DB14, then you would have to explain when you are doing the LISTCAT, and why you are including a DEFINE ALIAS for a completely irrelevant data set in your post.
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times

Re: Alias to non-vsam Dataset

Postby enrico-sorichetti » Mon Oct 15, 2012 6:17 pm

it' s just a way to enforce a naming standard for flexibility

for example ( not judging if it is good or bad )
if some installation had the standard of using an explicit steplib instead of relying on the LINKLIST

all the procedures invoking DB2 would have in the steplib concatenation
something like
//STEPLIB DD ....
//        DD disp=shr,dsn=<dsnload dataset name>   


the standard DB2 naming is something like DSN810. , DSN910. , DSNxxx

when migrating to a different db2 version all the user procedures would have to be changed

using the alias approach
defining an ALIAS <someprefix>.SDSNLOAD pointing to the DSNxxx.SDSNLOAD

//STEPLIB DD ....
//        DD disp=shr,dsn=<someprefix>.SDSNLOAD   


would make the migration from DSN810 to DSN910 pretty painless
just an alias redefinition with no change to the procedures
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Re: Alias to non-vsam Dataset

Postby jaggz » Mon Oct 15, 2012 6:37 pm

Enrico ,

Thanks for your Input and I understand this is going to reduce the pain of changing loadlib each and every time time during migration, Upgrade or any Change.

Robert,

Apology for confusion.. Yes I mean DB14 as XXX so both are same. I did LISTCAT after Step1 and Step2. So my curiosity is how does the Usercatalog Information gets reflected when we do a Liscat Against the ALIAS when we have already deleted the ALIAS entry from ICF.LTS.USERCAT ?
User avatar
jaggz
 
Posts: 356
Joined: Fri Jul 23, 2010 8:51 pm
Has thanked: 8 times
Been thanked: 5 times

Re: Alias to non-vsam Dataset

Postby Robert Sample » Mon Oct 15, 2012 6:45 pm

STEP1 deletes the alias.
STEP2 defines the alias in the default catalog -- which apparently is ICF.LTS.USERCAT.

A LISTCAT will not show the alias deleted unless you execute it between STEP1 and STEP2. Does STEP1 give a zero return code? Usually data sets named <something>.LINKLIB are in the LINKLIST and cannot be deleted until removed from the LINKLIST.
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times

Re: Alias to non-vsam Dataset

Postby jaggz » Mon Oct 15, 2012 6:54 pm

Hi Robert,

"A LISTCAT will not show the alias deleted unless you execute it between STEP1 and STEP2"

issued LISTCAT after Step 2.
User avatar
jaggz
 
Posts: 356
Joined: Fri Jul 23, 2010 8:51 pm
Has thanked: 8 times
Been thanked: 5 times

Re: Alias to non-vsam Dataset

Postby Robert Sample » Mon Oct 15, 2012 7:21 pm

So you got normal and expected results -- STEP1 deletd the alias, then STEP2 defined the alias so your LISTCAT showed the alias still there.
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times


Return to System programming

 


  • Related topics
    Replies
    Views
    Last post