Answer Posted / suersh ramaiyan
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 |
Post New Answer View All Answers
What is the difference between binary search and sequential search?
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
what is the difference between COBOL2 AND COBOL390?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
What is the difference between structured cobol programming and object alternativelyiented cobol?
What are the pertinent COBOL
How do you get the data to code the BMS macro?
1.give the details about WHEN OTHER. 2. how many form are available in evaluate.
What are various search techniques in cobol? Explain.
What are all the divisions of a COBOL program?
Mention the guidelines to write a structured cobol program?
Name some of the examples of COBOl 11?
What are the different data types in cobol?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?