how can we override data definitions in jcl.
can any one give detailed example
Answers were Sorted based on User's Feedback
Answer / meenu
CODE:STEPNAME.DDNAME DD PARAMETERS;
in place of parameters we can write the parameters which we want to override
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / suputhru
meenu u r corrrrect.
STEPNAME.DDNAME DD PARAMETERS;
in place of parameters we can write the parameters which we want to override
//PROC1 PROC
//STEP1…..
//DD1 DD DSN=FILE1,DISP=SHR
…
…
//
Now we can override dd parameter disp=shr to DISP=OLD.
//JOB1 JOB..
//PROCLIB…
//STEP001 EXEC PROC1
//STEP1.DD1 DD DSN=FILE1,DISP=OLD.
SYMBOLIC parameters: used to orverride parameters on the DD statement.
They can be used in cataloged and instream procs.
//ddname DD ¶meter
Values assigned at proc and exec statements.
//JOB1 JOB..
//PROC1 PROC DISPO=NEW ----here dd parameter value assigned at proc.
//STEP1 EXEC PROC1
//DD1 DD DSN=FILE1,DISP=&DISPO ------it means DISP=NEW.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / sj@iy
Adding to that..
Parameters can be overridden on the EXEC statement in
addition to the DD statement.
Sample for overriding REGION parameter of STEP10 in PROC
//STEP10 EXEC PGM=Program1, REGION=56K
//*Overriding the REGION parameter for STEP10
//SAMPPROC EXEC PROC=PROC1, REGION.STEP10=72K
| Is This Answer Correct ? | 1 Yes | 3 No |
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
Can we able insert data into a PS file Using IEBUPDTE utility??? If Yes can anyone describe it please..
how many max steps can we use in a job? pls answer to my question
Are there any set of rules for the names of the steps used in a job? What are they?
What is the use of symbol // in jcl?
List the different components of jcl statement?
What is dummy parameter in JCL??
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
how do u see jobs submitted before ur job ?
Explain about ISPFTTRC
Please explain with syntax and an example, the Inrec fields and Outrec build in sort.
how to write a jcl prog to copy alternate recs from ps1 to another ps2,suppose ps1 having 10 recs?