What is dummy parameter in JCL??
Answers were Sorted based on User's Feedback
Answer / lakshmi
The DUMMY statement will allow a Jcl program to run if a
data set does not exist.
| Is This Answer Correct ? | 22 Yes | 7 No |
Answer / priyadarsini.maitree23@gm
when we have a utility which needs a DD DSN statement, but, we dont need to give any input file, we give dummy in place of the workfile so that the jcl will execute without any issue..
| Is This Answer Correct ? | 1 Yes | 0 No |
What are steplib and joblib? What for they are used?
What is default if we don't specify RD parameter at all ?
I have one GDG. Everyday One new version is being created.Now I want to split this created version in different files each having 1000 records. Here Problem is I don't know How many records will be there in new version of GDG? that's why I don't know How many Out files we need to use . Interesting??????????????
what is the purpose of coding notify parameter in job statement?
How to fetch even records from one file to another file by using ICETOOL in JCL?
once we submitted the job to the operating system, how can we cancel the job before execution?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
What is the function of //jcllib statement?
what is XSUM in some fields= none, xsum ??
Hi, If a catolog proc has another proc in it, both have ddnames dd1 and dd2. what proc will override if gave override parameter. Here both have same step names.
what is use of space parameter in dd statement?
My JCL contains four steps //STP1 A(+1), DISP = NEW //STP2 A(+2), DISP = NEW //STP3 A(+3), DISP = NEW //STP4 A(+1), DISP = OLD STP3 was abended and I want restart my JCL from STP3 onwards & what are the precaution I want to take & what are the changes I need to make. Pls let me know.