How do you check the syntax of a JCL without running it?
Answer Posted / rajasekhara reddy
EJCK or !JCL in the command line will do.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of dd dummy statement?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
How to do automated restart when a job abend?
how would you create a temporary dataset? And where will you use them?
What is the significance of addrspc parameter in the exec statement?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
What happens if both JOBLIB & STEPLIB is specified ?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
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 parameter directs the output of the job log dataset?
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
Explain in DD statement what is the use of DCB parameter?
What is the purpose of disp parameter?
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
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.