what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
Answer / aparajita
COND parameter allows to specify condition based on the
return code of earlier steps will allow the current job
steps to execute or to bypass.
we can code cond at step as well as at job statement.if any
of the steps with in job issue a return code that satisfy
the cond code at job stmt. then the system bypass the
remaining steps and terminate the job.
===
Region-specify the limit of the real or virtual storage
allocated for any of the job steps.
if you specify region parameter at job stmt then it
override the specified region parameter at each job steps
with in the job.
===
Time-it specify the total cpu time all the job steps in a
job use.
if you specify time at job level then it implies to entire
job.if you specify at step level it implies only to the
particular step.
| Is This Answer Correct ? | 7 Yes | 0 No |
When can the USING phrase be included in the call statement ?
If by mistake we MOVE a working storage variable into LINKAGE area. What will happen??
explain sorting techniques in cobol program?
What is inspect in cobol ?
can I copy book which contain db2 statment in procedure divion?
What is the difference between working storage copybook and linkage section copybook?
Can you please let me know the centre name of INS certification in Kolkata.
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
What kind of error is trapped by on size error option?
What is the difference between static call & Dynamic call?
can we use the two 01 level in file discription ?
What is SET TO TRUE all about, anyway?