What is the purpose and meaning of the REGION keyword and
what JCL statement is it associated with?
Answers were Sorted based on User's Feedback
Answer / xyz
Specifies the amount the workspace required by the
operating system to execute the JOB
Value specified will apply to each step
Formats are:
REGION=<value>K
REGION=<value>M
REGION parameter should only be in units of “K” or “M”
indicating Kilobytes or Megabytes of workspace requested;
Results in JCL error if unit is not specified
If omitted, a default value is assigned by the system
If REGION=0M is specified, the system takes the most
optimum space
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / guest
REGION specifies the maximum CPU memory allocated for a
particular job or job step. If REGION is in the JOB card, it
relates to the entire job; if in the EXEC statement, it
relates to the job step.
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / remay
Use of REGION=0M in JCL jobcard grants the job
full access to available storage in address space.
| Is This Answer Correct ? | 4 Yes | 1 No |
how to eliminate the duplicates in sorting
Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE
Max generations in GDG??
How to check empty file in jcl?
What is the function of the dd dcb keyword?
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).
what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?
How much is memory space involved, when we code BLOCKSIZE,TRK & CYL ?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
what is check pending option
What is the format of comment statement?
after submiting the jcl.how do you know that the job has been completed.