describe the job statement, its meaning,syntax and
significant keywords?
Answer Posted / 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 |
Post New Answer View All Answers
what is the JCL statement consists of?
What is the function of //cntl statement?
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
What is the difference between the positional and keyword parameters? Give examples.
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
Can we use DISP=SHR in output file in JCL
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
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?
Explain the function of //jcllib statement?
how you will the direct the data to spool using sysout option?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
what is use of disp parameter in dd statement?