What is the difference b/w the CLASS,TIME,PRTY in jcl job card.
Answers were Sorted based on User's Feedback
Answer / y@$w@nth
TIME ---> with the TIME parameter we are telling to the
operating system that the maximum amount of time that our
job can take, if that time exeeds and still ur job is
running then operating system will abend our job with abend
code 322.
PRTY---> PRTY stands for priority of our job that means..
for exmple if there are four jobs those needs to executed by
operating system using PRTY parameter we telling that which
job needs to execute first and which needs to execute second
and so on.....
CLASS --> CLASS parameter tells the class of your job that
means some jobs may take heavy time and some jobs take less
time depending on the complexity of the program and
resources that those are using. By using class parameter we
are telling to the Operating system that my job is of this
class....
Let me know if i am worng...
cheers..
yaswanth.pyrs@gmail.com
Y@$w@nth
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / mohan.chepuri
class is used to which job wil execute first
time is use to limited time to giv the run the job
prty is use to if class is equal to all jobs then prty is
use to check the prty cond and execute first
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / krishnachaitanya
first answer is correct except about CLASS given by friend
Khajafairoz . class tells that our job submited to os through
which input queue there are 36 input queues each input queue
has its own time and region it depends on installation it
vary to company to company if we didnot give class name it
wil take default queue name it vay to company to company.
queues are A,B,C,D------Z,0,1,2,-----9 SO TOTAL=26+10=36.
CLASS=A,OR CLASS=Z ,OR CLASS=1,OR CLASS=9-----------
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / khajafairoz
TIME:-HOW MUCH TIME IS ALLOCATED FOR EXCUTING MY JOB.THE CPU
TAKE MORE TIME IT WILL ABEND S322 ERROR CODE.
PRTY:-IT WILL GIVE HIGEST PRTY FOR EXECUTING MY JOB.
CLASS:-THE CLASS PARAMETER TELL WHAT IS UR PROGRAM,WHO HAS
WRRITEN WHEN IT COMPILE.
Is This Answer Correct ? | 3 Yes | 11 No |
What is the error in the following JCL statements : I) //step#three exec pgm=hkbc762 ii) //step#3 exec pgm = hkbc762 iii) //step#3 exec pgr = hkbc672
what is use of dcb parameter in dd statement?
What is a S0C4 error ?
I have two input SORTIN files and We need to create one SORTOUT file which contains data of both input files. What is the SortCard for this?. Suppose the length of the both files are different, then How we do it? Please reply ASAP
which utility is used to run a cobol-db2 program?
What is a Generation Data Group (GDG)?
How is the record format of an output dataset specified?
how to resolve soc-7 ? please tell me
What dd statement is used to supply the name of a dataset?
Explain COND used in JCL?
How can I write the joblog in the spool on normal end of a job step and direct the joblog to a dataset only if the step abends?
Is it possiable to use a gdg in the INCLUDE statement in a SORT jcl? I am using this because I want to change the condition with out changing the jcl. Please provide with a sample code.