Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between joblib and jcllib statements

Answers were Sorted based on User's Feedback



What is the difference between joblib and jcllib statements..

Answer / shiva

1 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 ?    27 Yes 2 No

What is the difference between joblib and jcllib statements..

Answer / prashanthkodakani

joblib:
it will search load modules of all the steps which are
include in that job ,if it is load modules not found then
it will searched in system lib, there is also not found it
will dispaly 's806' error = load module not found

jcllib: it will search cataloged procedure data set

Is This Answer Correct ?    8 Yes 3 No

What is the difference between joblib and jcllib statements..

Answer / sreedhar naidu dhekodna

Loadlib will contain load module of the program not the
step if the program is called in the step then the load
module of that particular program will be searched in that
load libraries which are specified in JOBLIB.

Is This Answer Correct ?    5 Yes 1 No

What is the difference between joblib and jcllib statements..

Answer / mrunmaya

then what is loadlib prashanthkodakani?

Is This Answer Correct ?    0 Yes 0 No

What is the difference between joblib and jcllib statements..

Answer / gowthamgyaa

Mainframe can understand only in terms of hexadecimal. Application programming what we coding like COBOL, have to be converted into Hexadecimal. Hence during the stages of compiling, our Programming codes would be link-edited and moved to load library as hexadecimal codes.

Since Load library is a private library[used only by single user], we are using joblib to invoke it.

JCL lib would be used to invoke system libraries like ZOS.PROCLIB.


Am a learner, so correct me if I'm wrong.

Is This Answer Correct ?    0 Yes 0 No

What is the difference between joblib and jcllib statements..

Answer / shiva

JOBLIB is used to include the System libaraies.
JCLLIB for the order in which the PROCS are Steps in Job to
be searched.
Example.
//JOBNAME JOB
(1,02931,1A),'SDV2903',CLASS=1,
//MSGCLASS=N,NOTIFY=&SYSUID
// JCLLIB ORDER=DW££.SDV.CUS.TST.PROCLIB
//JOBLIB INCLUDE
MEMBE=SDVLIBS
//STEP1 EXEC
SDV2903P

Is This Answer Correct ?    6 Yes 7 No

What is the difference between joblib and jcllib statements..

Answer / prashanthkodakani

hi mrunmaya,

loadlib: its a load library it contain the load module of
the step, then joblib search the load modules of the steps
in loadlib.

Is This Answer Correct ?    3 Yes 4 No

Post New Answer

More JCL Interview Questions

is step name is compulsory in jcl ?

2 Answers  


How to DEBUG a JCL?

9 Answers   Satyam,


i have 5 steps to execute in that i want to skip 3nd step and start execute from forth step how can u do this.

7 Answers   Syntel,


What are s0c1, s0c4, s0c5, s0c7 and socb?

0 Answers  


What is Backward Referencing ?

3 Answers   HSBC,


How to fetch even records from one file to another file by using ICETOOL in JCL?

3 Answers  


What is the DD statement for a output file?

3 Answers  


How do you handle empty files in a JCL ?

3 Answers   Wipro, Xansa,


Explain how can a stopped job be started again?

0 Answers  


If i have defined an temperory dataset in step2, how can i call back or use the same dataset in step5 of the same job

4 Answers   UST,


Explain about LMMFIND - find a library member

1 Answers  


I have a Symbolic Parameter which can have a value say 01 or 02 etc. Now consider i have another Symbolic parameters which is used to get 3 digit code of months (JAN, FEB, etc) but for that i need to check the first symbolic parameter's value and provide its corresponding month's name in the second symbolic parameter. Say IF sym1 = 01 then sym2='Jan' ENDIF etc... In JCL, IF condition is used for RC, ABEND purposes of a step etc. When i use Symbolic parameter in IF clause it is showing Error message. Is there a way to get the above result possible in JCL. If you could provide me with an example, i would understand it better.

0 Answers  


Categories