Is there a limit of 3273 DD statements for a JCL or for
every EXEC step in a JCL?
Answer Posted / syam
The maximum number of DD statements per job step is 3273,
based on the number of single DD statements allowed for a
TIOT (task input output table) control block size of 64K.
This limit can be different depending on the
installation-defined TIOT size. The IBM-supplied default
TIOT size is 32K. For information about changing the size of
the TIOT, see ALLOCxx parmlib member section in z/OS MVS
Initialization and Tuning Reference. For information about
how dynamic allocation might cause changes to the task
input/output table (TIOT). see z/OS MVS Programming:
Authorized Assembler Services Guide.
| Is This Answer Correct ? | 27 Yes | 1 No |
Post New Answer View All Answers
In job processing, what happens in conversion stage?
What are the 2 types of parameters in dd statement?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
hello friends ,i have exam in Hsbc,pls any on send me placement papers and technical questions on mainframes,thank u
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
How jcl work to handle various input output file operations?
Name a few IBM utility programs, and explain its function.
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
Is their any limit for data sets?
How to run cobol program using jcl?
what is “Cond= even” and “Cond=only”?
Is it possible to left uncode disp? If yes, how?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
Is condition checking possible in jcl? If yes, how?