What is the difference b/w the CLASS,TIME,PRTY in jcl job card.
Answer Posted / 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 |
Post New Answer View All Answers
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
What happens if both JOBLIB & STEPLIB is specified ?
Explain about LMQUERY�give a dialog information about a data set
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
How to execute 2nd and 4th steps among 5 steps in jcl proc?
How to override loadlib?
What is the maximum length of a single line of jcl?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
Does jcl support automatic restart?
How to do automated restart when a job abend?
How does jcl act on code(if you take a cobol program)?
What is the function of the dd mgmtclas keyword in sms datasets?
How to alter the parameters for the existing gdg?
What is the function of the dd dcb keyword?
What does a disposition of (MOD,DELETE,DELETE) mean ?