I know commenting sortwork space in proc and overriding Dfsparm from jcl to allocte dynamic allocation.
Is it possible do without commenting the workspace proc.
DYNAUTO=YES is our installation
Use the installation parameter DYNAUTO=IGNWKDD which specifies that work data sets should automatically be dynamically allocated using the DYNALLOC/DYNALOC values in effect even if SORTWKdd DD statements are present at run time. SORTWKdd data sets are deallocated before sorting begins, thus freeing unneeded temporary work space.
Please advice, how do we use the installation parameter, or how do we change installation parameter only for this job to use dynamic work space allocation without commenting sortwork space allocation
For testing purpose we moved the proc to jcl. now in this jcl we have workspace allocation specified + Dynalloc, all we need is DYNALLOC should be used instead of workspace allocation
Joined: 26 Nov 2002 Posts: 12377 Topics: 75 Location: San Jose
Posted: Fri Jul 25, 2014 11:13 am Post subject:
Magesh_J wrote:
Please advice, how do we use the installation parameter, or how do we change installation parameter only for this job to use dynamic work space allocation without commenting sortwork space allocation
For testing purpose we moved the proc to jcl. now in this jcl we have workspace allocation specified + Dynalloc, all we need is DYNALLOC should be used instead of workspace allocation
Magesh_J,
An Override of the Installation Parameter will affect every single job on your system where as a run-time override of a parameters will ONLY affect the job it was coded.
You can change any of the IBM-supplied DFSORT defaults in one of two ways:
1. With ICEPRMxx members in concatenated PARMLIB. This is the recommended method. You specify the defaults you want to change for any or all environments in one or more ICEPRMxx members in PARMLIB and use the supplied ICEOPT started task to activate those members. For example, to activate ICEPRM01 and ICEPRM05, you would use this START ICEOPT command:
Code:
START ICEOPT,ICEPRM=(01,05)
You can activate different ICEPRMxx members for different LPARs automatically at IPL time by including a START ICEOPT command in an appropriate COMMNDxx member in PARMLIB, or at any time by issuing a START ICEOPT command from the console.
ICEPRMxx changes to the installation defaults are merged with and override the specified or IBM-supplied ICEMAC defaults.
Check this link for an example of ICEPRM01 Installation Default Overrides
2. With the ICEMAC macro. You specify the defaults you want to change for each environment with an SMP/E usermod. ICEMAC changes to the defaults are merged with and override the IBM-supplied ICEMAC defaults.
Joined: 26 Nov 2002 Posts: 12377 Topics: 75 Location: San Jose
Posted: Wed Aug 06, 2014 3:15 pm Post subject:
Magesh_J wrote:
Kolusu,
Thanks for the information, But sorry, I don't know where to give this command in the jcl
I mean under DFSPARM or where.. ?
Magesh_j,
You canNOT override DYNAUTO=IGNWKDD during run-time. You need to contact your systems programmer to make that change at the installation level. _________________ Kolusu
www.linkedin.com/in/kolusu
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum