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 |
There are a set of 10 files and a customer will be selecting random no of files(i.e they may be more than 2, may not be in the order).Sometimes he might just select one file or sometimes no files at all.How do you code a JCL for this? Is it possible to code just JCL alone for this problem?
what's the significance of freespace(0 0) and freespace(100 100)
what is full form of AIX
Statement1 "We can not use UNCATLG in SMS managed VSAM datasets" Statement2 "We can not delete a SMS managed data set without UNCATLG it" (P-353, Saba Zameer book) Then how do we delete SMS managed VSAM datasets ?
How can i execute 5th step without executing first 4 steps?
We are aware of eliminating the duplicate records from outyput fiel using sort utility. Can we get the duplicate records in to another file in the Same sort utility?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
What is NOTCAT ?
There are 2PROCS in a JCL. I want following conditions to be carried out 1) 1st PROC should be executed as such In second PROC 2) First 4steps should not be executed 3) 5th step should not be executed 4) 6th and 7th step should be executed The change should be done only in the JCL and PROC should be untouched ?
Hi, I have a requirement File A : I have 6 records out of which 4 are same. File B: I have 8 records out of 6 records are same. The 4 records in FILEA and 6 records in FILE B are same. If we substract we will get two records, I need these two records in output file This is because to remove the duplicates from the database. Through easytrieve we can compare but for that there should not duplicates, but in my file I have duplicates. Thanks in advance!!
How to execute 2nd and 4th steps among 5 steps in jcl proc?
How to DEBUG a JCL?