Syntax for JCLLIB & JOBLIB???
JCLLIB: The PDS, where all the JCL (procedures) are present.
JOBLIB: The PDS, which contains the load modules of the programs.
In a JCL, if we are including any procedures, the system should know where it needs to be searched. That's why we are mentioning JCLLIB.. here is the syntax..
//DDNAME JCLLIB ORDER=(Emer.proclib,prod.proclib)
Where, DDNAME can be anything within 8 chars, JCLLIB & ORDER are the keywords and there is no DISP is needed.
When a program is try to run the system will execute the macro to load the executable code(load module of the program) from the load library to main memory. So we should mention where it should find the same. here is the syntax.....
//JOBLIB DD DSN=emer.loadlib,DISP=SHR
// DD DSN=prod.loadlib,DISP=SHR
// DD DSN=test.loadlib,DISP=SHR
Where, other than the library name, all others are keyworkds.
Please include if I missed anything..
| Is This Answer Correct ? | 14 Yes | 1 No |
Why occurs cannot be used in 01 level in COBOL?
What R 2 of the common forms of the EVALUATE STATEMENT ?
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?
i friends greetings to the day...!!! I face a quation like"while runnig the programe every day i have to access the previous day updates only...!! Ex:- Let last day 100 customers took bank account i have to select those customers only.."
What is the problem of ordered sequential files access?
01 a pic 9(6) value is 123456 01 b pic 9(3) move a to b wht will be the value ?
What is the difference between CONTINUE & NEXT SENTENCE ?
period is missing in the cobol program which error we getting
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
Difference between file status codes 02 and 22.... since both are for duplicate key detection.
if a file has 1000 recods how copy the records from 1 to 100 records using sort
What is ASKTIME, SUSPEND