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 |
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)?
Can we Execute a job without specifying Job Name in the Job Card?
What u mean by include statement in JCL ?
Is automatic restart possible in jcl? If yes, how?
i have a jcl containing header body and trailer .in header i have viswa body 2 6 1 9 7 trailer reddy .now i need to sort only body in either asecending or descending order how can i do it
Suppose I have five jobs to do. But I want to hold one?
Suppose I have seven jobs to do, but I want to hold one than how can I do this?
In JCL I have 5 steps,I need to execute 1st,2nd and 5th steps only,can any one answer me please?
How I sort the records in a file and copy the first 10 records to another file
a dd statement has 2 types of parameters. Name them?
a input file contains 1000 records, how to move the first 500 record into one out put file and how to move to second 500 records to anothere output file
How can values be passed from the job stream to an executable program?