What is JOBLIB ?

Answers were Sorted based on User's Feedback



What is JOBLIB ?..

Answer / shakila vinayagam

It is a DD (Data definition) statement, and it specifies
where
the program (which is specified in EXEC statement)
exists.
It is applicable to all job steps in that job. It
cannot be used
in cataloged procedures.

Syntax -> //JOBLIB DD DSN=dataset

EXAMPLE JCL ->

//MYJOB JOB (E343),'KRISHNA'
//JOBLIB DD
DSN=SE.TEST.LOADLIB,DISP=SHR <--- Attention
//STEP1 EXEC PGM=COBPROG


Immediately following the JOB statement is
the JOBLIB DD
statement. This is used to specify the
location of the
program that is to be executed.

Is This Answer Correct ?    6 Yes 0 No

What is JOBLIB ?..

Answer / tina

JOBLIB specifies the list of loadlibraries which include the
programs to be executed.
You can have any no. of LOADLIBS.

Is This Answer Correct ?    3 Yes 0 No

What is JOBLIB ?..

Answer / pankaj thakur

Joblib specifies the location of program for all the steps
used within the JCL.In a single Job there can be 255 steps
coded at a single time.

If in a particular step we use the steplib statement then
that steplib statement overrides the joblib statement.

Is This Answer Correct ?    3 Yes 0 No

What is JOBLIB ?..

Answer / kaladhar

IT SPECIFIES THE LOADLIB IN WHICH THE PROGRAM LOADMODULES
OF ALL THE STEPS ARE SEARCHED.
JOBLIB MUST IMMEDIATELY FOLLOWS JOB STATEMENT.

Is This Answer Correct ?    3 Yes 0 No

What is JOBLIB ?..

Answer / selvarani ajeeth

Shakila ,I just need to add some points,
We can gie any number of loads in the joblib.
The precedence will be taken from the top to bottom.If the
program load is not found in the first PDS ,it will be
taken from the next.STEPLIB overrides JOBLIB statement.

Is This Answer Correct ?    2 Yes 4 No

Post New Answer

More JCL Interview Questions

what is the JCL statement consists of?

0 Answers  


What is the difference between catalogue procedure and In-Stream procedure?

2 Answers  


Explain dd statement in jcl?

0 Answers  


how to purge 50 initiators continuously?? console commands??

4 Answers   IBM, ups,


wt will happen to the step of a job if u code COND=ONLY

5 Answers   ADP,






proc1,proc2,up to proc5 is there if i want to call proc1 and proc5how can u write the code

2 Answers  


Can anyone tell me the syntax for printing two files at two different destinations in a single step?

3 Answers  


Why block size is multiple of lrecl in jcl?

0 Answers  


One of My Job is running in production, which contains five steps?i want to pass the input to FIFTH step while running is it possible? if how?

1 Answers   CTS,


Is Default for MSGCLASS = (1,1) ?

2 Answers   IBM,


what is meant by jobtrac?

4 Answers   CSC,


AM HAVING A FILE WHICH CONTAIN 12 DATS OUT OF WHICH 4 ARE DUPLICATES HOW TO REMOVE THE DUPLICATE FILES IN JCL? CAN I GET THE PROGRAM FOR THIS

3 Answers  


Categories