How many types of libraries are there in JCL ?
Answer Posted / varun vittal
5
| Is This Answer Correct ? | 5 Yes | 11 No |
Post New Answer View All Answers
What is the purpose of dd dummy statement?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you
For what purpose steplib and joblib are used ?
what is the difference between JES3 and JES2?
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) ?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
How can a jobs execution priority be modified?
How do you access an uncatalogued dataset in a jcl?
Explain dd statement in jcl?
What are some jcl statements that are not allowed in procedures?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
What is the function of job statement in jcl?
What is the motivation behind coding class parameter in job statement?
How to pass data to a program that is coded in an exec statement?
What is the difference between the positional and keyword parameters? Give examples.