What is DYNAMBR in jcl?
Answers were Sorted based on User's Feedback
Answer / bala nallapaneni
Use the DYNAMNBR parameter to tell the system to hold a
number of resources in anticipation of reuse.
| Is This Answer Correct ? | 15 Yes | 4 No |
Answer / lalit
tells the maximum no. of dynamically alocatted datasets
that you can create
| Is This Answer Correct ? | 7 Yes | 3 No |
How to check empty file in jcl?
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
Can you code instream data in a PROC ?
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
What is Backward Referencing ?
Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE
Is their any limit for data sets?
If I update one or more members in a pds in the step 1, how can I reach these new contents to be used in the step 2 of the same job? To start a new job via intrdr is not satisfactory, because I must solve this problem in one job.
A maximum of 100 chars can be passed to Cobol through Parm in JCL, If we want to pass more than 100 Chars how we can do it ?
When space is allocated for an output dataset, what units can be used?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above