wht is the d/f between positional parameter n keyword parameter ?
Answer / ranjith
Positional Parameter: where the position of the parameters
cannot be changed and it has to follow as it is..
eg: let us say a,b,c are the parameters in jobcard
correct: //jobname job a,b,c
incorrect: //jobname job b,a,c
//jobname job a,c,b
Keyword parameter: where the position of the parameters be
changed/or an optional. Can be placed after Positional
parameters, if req.
eg: let us say a,b are positional parameters
c,d are keyword parameters
correct: //jobname job a,b,c,d
//jobname job a,b,d,c
incorrect: //jobname job a,c,b,d
//jobname job c,d,a,b
//jobname job acct-info(PP), 'pgrname'(PP),
// RESTART(KP), TYPRUN(KP), TIME(KP),
// REGION(KP)
| Is This Answer Correct ? | 22 Yes | 2 No |
what do you mean By spooling? Expand SPOOL?
Name a few IBM utility programs, and explain its function.
How to execute step2,step5,step7 of a proc of 10 steps? You are not allowed to change in JCL.
In job processing, what happens in execution stage?
What is the use of the utility DFSRRC00 in the JCL?
which utility is used to sort a file in jcl?
How can I override a dsn that is contained in a proc called by another proc? I need to do the override in the calling JCL.
Explain about LMINIT - generate a data ID for a data set
Suppose we have 5 steps in a job.No step should be executed After submitting every step in a job
Passing a variable parm from JCL to a cobol/db2 program
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?
If your job fails at particular step then what would be the return code for next steps