Suppose I have 5 dataset listed under a single DD name in a
catlogued PROC. How can I override one of those 5 dataset
(say 3rd dataset)?
Answer Posted / nans
In the catalogued PROC, the 3rd dataset can be overridden
like below.
ORIGINAL CODE IN CATALOGUED PROC:
*********************************
//S01 DD DSN=A.B.C.D1,DISP=SHR
// DD DSN=A.B.C.D2,DISP=SHR
// DD DSN=A.B.C.D3,DISP=SHR
// DD DSN=A.B.C.D4,DISP=SHR
// DD DSN=A.B.C.D5,DISP=SHR
//
...
OVERRIDDING 3RD CONCATENATED DATASET IN CATALOGUED PROC:
******************************
//PRCN.S01 DD
// DD
// DD DSN=A3.B3.C3.D3,DISP=SHR
// DD
// DD
//
...
| Is This Answer Correct ? | 22 Yes | 7 No |
Post New Answer View All Answers
State the uses of syspring, sysin, sort fields, sum fields and dummy.
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
I need exexution process for JCL programs
Explain the function of job statement in jcl?
a dd statement has 2 types of parameters. Name them?
Can we use DISP=SHR in output file in JCL
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
Explain about LMFREE�free data set from its association with data ID
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
Explain how can the disposition of sysout datasets be set for an entire jobstream?
How does jcl act on code(if you take a cobol program)?
When output dataset space is required, what quantity categories are used?
Is it possible to left uncode disp? If yes, how?
How can a jobs execution priority be modified?
What is the difference between the positional and keyword parameters? Give examples.