describe the job statement, its meaning,syntax and
significant keywords?
Answer / krithiga hari
Job statement is to execute a job. It identifies the
Beginning of the job. Without this job statement, the
operating system will not execute the job.
The various keyword parameters are:
CLASS - it identifies the nature of the job that is to be
submitted
PRTY - assigns priority to the job
MSGCLASS - determines the output device to which system
messages and jcl messages are written
MSGLEVEL - specify the jcl and the allocation messages
which will be recorded on the output device specified in
the msgclass
TYPRUN - this tells whether the job is to be held until it
is released or its execution is to be suppressed altogether
Example:
//JOB1 JOB
(A123),'KRITHIGA',CLASS=E,PRTY=1,MSGCLASS=A,MSGLEVEL=(1,1),TYPRUN=HOLD
| Is This Answer Correct ? | 4 Yes | 0 No |
how to run batch program without jcl?
Explain about Internal Sort
Which dd parameters are required?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
How are GDGs concatenated?
How can unused space allocation be returned to the system when a dataset is closed?
if in a job, region is mentioned in both jobcard and in step then which is cosidered at the step level? A job has region 4k in jobcard and step1 with region 0k and step2 with 16k, then what is the region allocated for the entire job? what is the region step1 takes? what is the region step2 takes?
How do you access an uncatalogued dataset in a jcl?
How to execute a set of JCL statements from a COBOL program ?
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want exicute step 3 and step 7 only how we specify condition ?
i have records from 1 t0 100 . i need to open records from 10 to 18 and change the values in tht ? how can i do tht ?