What is the difference between the JOBLIB and the STEPLIB
statements?
Answers were Sorted based on User's Feedback
Answer / guest
The JOBLIB statement is placed after the JOB statement and
is effective for all job steps. It cannot be placed in
abcataloged procedure. The STEPLIB statement is placed after
the EXEC statement and is effective for that job step only.
Unlike the JOBLIB statement, the STEPLIB can be placed in a
cataloged procedure.
| Is This Answer Correct ? | 53 Yes | 4 No |
Answer / vaibhav kulkarni
1)JOBLIB : It is placed after the job statement.
steplib is placed after the EXEC statement.
2)joblib statement can't be cataloged
while steplib statement can be cataloged.
3) syntax for the joblib //joblib DD DSN=datasetname
and
syntax for the steplib
//steplib DD DSN=datasetname
| Is This Answer Correct ? | 14 Yes | 1 No |
describe the dd statement,its meaning,syntax and keywords?
How does jcl act on code(if you take a cobol program)?
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?
what is the difference between return code and maxcc?
If the proc stepname is excluded while overriding the COND, TIME, REGION and PARM parameters while calling the proc, will the override only apply to the first step in the proc or all the steps for all the above parameters?
when can a job time-out occur? How to overcome that?
How do you create a temporary dataset? Where will you use them?
How does jcl act on a cobol code?
How to alter the parameters for the existing gdg?
Explain about ISPF/TSO Commands
I have 10 steps, I want to run STEP1 TO STEP4 then I should not run STEP5 and STEP6. Aganin I want to execute from STEP7 to STEP10. ONLY using CONDITION CODES how can we execute this process? 1. Where we can set cond codes for STEP5 and STEP6? 2. How can we execute remaining steps from STEP7 to STEP10?
There is a procedure in A.B.PROCS(PROC1) (member name is PROC1) //PROCA... There is a call to a procedure PROCA from a JOB. //STEP01 EXEC PROCA ... Here "PROCA" in JOB refers to the actual PROC name or the member name of the PDS where this PROCA is stored.