what is the difference between the JCLLIB and JOBLIB ,and
where do we use it ?
Answers were Sorted based on User's Feedback
Answer / sukumar
Joblib is a default load library for all the jobsteps
JOBLIB DD statement specifies the private library that the
system needs to search to obtain the program named in each
of the EXEC statements PGM parameters. Only if the program
is not found in the private, the system searches in the
system libraries.
Jcllib is the loadlib that contains cataloged procedures
JCLLIB statement species the private library that the system
needs to search to obtain
(a) the procedures (PROCS) named in the EXEC statement
(b) the Groups of JCL statements (called INCLUDE groups)
named on any INCLUDE statements
| Is This Answer Correct ? | 18 Yes | 3 No |
Answer / manojkumar sivakumar
JCLLIB is used with either OS/390 or MVS/ESA Version 4 or
higher JES2 or JES3 systems, to identify a private library
or a system library from which INCLUDE groups and JCL
procedures are to be retrieved. The order in which the
library names appear on the JCLLIB statement is the order
in which they are searched for any JCL procedures (PROCs)
and INCLUDE groups referenced by this job.
The JOBLIB DD statement is used to identify a program
library to search first when attempting to locate programs
executed during the job's life. The JOBLIB must be placed
after the JOB statement and before the first EXEC statement
in the job. More than one program library can be
concatenated after the first one on a JOBLIB.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / bala
Programs that needs to be executed in a job are searched
in Library provided at JOBLIB, provided STEPLIB is not
given for provided (or) program is not first fount in
STEPLIB.
All the PROCs used in a job are search in the library
specified in JCLLIB
| Is This Answer Correct ? | 2 Yes | 0 No |
What are the maximum and minimum sizes of any CONTROL AREA (VSAM datasets) ?
what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
What is COND=EVEN ?
What happens if both JOBLIB and STEPLIB is specified ?
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
can we copy a file from fixed block to variable block and vice versa ....asap
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
What are hierarchy levels in jcl?
What are the 2 types of parameters in dd statement?
What does the keyword DCB mean and what are some of the keywords associated with it?
Explain the job statement in jcl?
Explain the function of the dd dcb keyword?