In-steam and cataloged procedure



JES, JES2, JCL utilities, IDCAMS, Compile & Run JCLs, PROCs etc...

In-steam and cataloged procedure

Postby dn2012 » Thu Apr 19, 2012 8:38 pm

what is difference btw In-steam and cataloged procedure?

If I need to use SYMBOLIC Variable in the PROC and pass al the variables from job.
Which is better option and why?

thank you
dn2012
 
Posts: 114
Joined: Thu Feb 16, 2012 6:10 am
Has thanked: 0 time
Been thanked: 0 time

Re: In-steam and cataloged procedure

Postby dick scherrer » Thu Apr 19, 2012 9:22 pm

Hello,

In-stream is just as it says - it is in the submitted job. A cataloged procedure is stored in a pds (usually xx.yy.PROCLIB or similar).

Rethink your second question. . . What do you see as the "alternatives" from which to choose?
Hope this helps,
d.sch.
User avatar
dick scherrer
Global moderator
 
Posts: 6268
Joined: Sat Jun 09, 2007 8:58 am
Has thanked: 3 times
Been thanked: 93 times

Re: In-steam and cataloged procedure

Postby NicC » Thu Apr 19, 2012 10:30 pm

Generally, in my modest experience, all production procedures are in libraries and most testing procedures. For a start - if the procedure is in the library then everyone can use it (if authorised) whereas if it is instream only you can use it. I may, when developing procedures, use instream but once sorted I put them into the library.
The problem I have is that people can explain things quickly but I can only comprehend slowly.
Regards
Nic
NicC
Global moderator
 
Posts: 3025
Joined: Sun Jul 04, 2010 12:13 am
Location: Pushing up the daisies (almost)
Has thanked: 4 times
Been thanked: 136 times

Re: In-steam and cataloged procedure

Postby dn2012 » Thu Apr 19, 2012 10:30 pm

cataloged procedure
dn2012
 
Posts: 114
Joined: Thu Feb 16, 2012 6:10 am
Has thanked: 0 time
Been thanked: 0 time

Re: In-steam and cataloged procedure

Postby dick scherrer » Thu Apr 19, 2012 11:32 pm

Hello,

I went brain-blank earlier when thinking about alternatives. . . Other than when one is experimenting or working on a one-time requirement that needs to be run many, many times and can take advantage of symbolic parameters, overrides, etc my clients ALWAYS use PROCLIBs.

The better organized environments are configured with at least a PRODuction and a TEST proclib. Several have a library for QA and Production Repair. . .
Hope this helps,
d.sch.
User avatar
dick scherrer
Global moderator
 
Posts: 6268
Joined: Sat Jun 09, 2007 8:58 am
Has thanked: 3 times
Been thanked: 93 times

Re: In-steam and cataloged procedure

Postby steve-myers » Fri Apr 20, 2012 9:20 am

The issue about "PROCLIBs" is actually more than a little confusing.

In the beginning there was SYS1.PROCLIB. Didn't like the name? Tough. It stayed that way until MVS. In stream procedures were added late in OS/360.

It started to get confusing with MVS.

  • There was potentially a separate, moderately well hidden, library used to start MVS subsystems. Many shops used SYS1.PROCLIB, and continue to use it, but not all. Originally this was specified in a LNKLST load module that just had the JCL used to start the "master" subsystem; now it has been parameterized to a PARMLIB member that contains the JCL.
  • The JES subsystems allowed specification of multiple proclibs, both as concatenations, and as a selectable library. In more recent MVS releases the PROCLIB definition was parameterized rather than specified in the JCL used to start JES. This was done because it was all too common for a JCL error in the proclib definition caused JES to not start. Oops. So in JES2, you have /*JESPARM PROC=nn. where the nn selected a proclib defined by the PROCnn DD statement in the JES2 startup JCL or established through JES2 initialization statements. As others have noted, many shops have established a library that us non-priviledged grunts can update, but this can be dangerous; the library can run out of space, or the directory can fill up. Another problem is the library can extend into an additional extent; members placed in the new extent may not be accessible right away.
  • Many shops had a JES2 extension, such as the CA "Easy Proclib" product that provided a JES2 JECL control statement, /*PROCLIB dataset, that effectively inserted the dataset into the proclib definition for the job.
  • The // JCLLIB ORDER=(dataset,...,dataset) JCL statement was added that provided functionality similar to the /*PROCLIB change in the previous bullet.
Now, of course, we have no idea about your system. You will have to figure out what you can do in your system all by your little self.
steve-myers
Global moderator
 
Posts: 2105
Joined: Thu Jun 03, 2010 6:21 pm
Has thanked: 4 times
Been thanked: 243 times


Return to JCL

 


  • Related topics
    Replies
    Views
    Last post