if in a job, region is mentioned in both jobcard and in
step then which is cosidered at the step level?
A job has region 4k in jobcard and step1 with region 0k and
step2 with 16k, then what is the region allocated for the
entire job?
what is the region step1 takes?
what is the region step2 takes?
Answers were Sorted based on User's Feedback
Region parameter coded in jobcard overrides that at step
level in JCL. so the region parameter coded in jobcard is
considered at each step.
0k or 0M always allows/sets limit to all of the 24-bit/31-
bit virtual storage available to the address space
| Is This Answer Correct ? | 11 Yes | 5 No |
Answer / kiran
As others suggested,
region in the JOB card overrides the region in the Step
only when the Region in step card is gretaer than the
Region in JOB card.
1. Entire job takes - 4k
2. Step 1 takes - 0K ( few environments have settings, with
0K as unlimited space, in this case 4k is assigned to step
1)
3. Step 2 region is overrides by job card region value - 4k
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / arjun
As we all know, job always overrides step.
then step 1 will take 0 bytes...but if 0 bytes is not sufficient in execution of that step then it goes to job 4k...
it prefers 0 but if not sufficient then 4k
Same case with step 2.
first checks 16k if it is ok for execution then fine else gives an error as 4k is anyhw not sufficient.
| Is This Answer Correct ? | 0 Yes | 5 No |
I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?
Explain about CBL/PROCESS statement syntax
what happens if job falls in loop ? how to resolve it ?
Explain the purpose of the dd keylen parameter?
what is use of space parameter in dd statement?
How do you submit a JCL under CICS environment ?
I have three files for one step i need to override the third file how to do that in jcl?
Matching Logic in Jcl not in cobol.Could any one please answer this question
how do you code a null statement?
is there any utility for restarting a particular step in jcl reply soon ?
How many JOB statements a JCL can have ? If there are more than one JOB statements in a JCL, are they submitted in succession or in parallel ?
How do you override a specific DDNAME/SYSIN in PROC from a JCL?