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 can you trap abends in the JCL?
how to identify a vasam dataset by seeing in 3.4(browse)
How to search strings in multiple dataset with conditions 'string1 & string2'?
What statement marks the end of an in-stream or catalogued procedure?
which parameter is used to check the syntax of a jcl without executing it?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
How to execute 2nd and 4th steps among 5 steps in jcl proc?
Explain about User Information
How to compare 2 files using File-Aid?
what is the use of temporary files?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
If Name is NOT given for a JOB statement, then will it give error or installation will supply it for the JOB ?