Does the terms, JOBLOG, SPOOL and SYSOUT indicate the same
thing, i.e., where JCL and JES messages and statements are
written ?
Answer Posted / guest
msg class contain JCL RELATED MESSAGES
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what is JCL?
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
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
What is the format of comment statement?
Explain the function of the dd dcb keyword?
How can the disposition of sysout datasets be set for an entire jobstream?
//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 /*
Explain how can return codes be tested before execution of a job step?
Can I share my data with other jobs? How?
For what purpose steplib and joblib are used ?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
What are the rules employed while naming the steps in a job?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
What is the significance of addrspc parameter in the exec statement?