How we can code in a jcl to execute a job in a particular
time and date without using any job shudular?. (Eg) i want
to execute a particular job at 8 am on 01/01/2010.
Answers were Sorted based on User's Feedback
Answer / chandrakant
The code is:
//MAIN DEADLINE=(0800,B,010110)
| Is This Answer Correct ? | 12 Yes | 5 No |
Answer / mf guy
Another variant to this is as follows:
The code is:
//MAIN DEADLINE=(0800,B,REL,CYCLE)
Where CYCLE = WEEKLY (REL = 1 to 7)
MONTHLY (REL = 1 to 31)
YEARLY (REL = 1 to 365)
Eg:
//MAIN DEADLINE=(0800,B,2,WEEKLY)
this means the job will execute at 0800 hours every tuesday.
Thanks.
| Is This Answer Correct ? | 6 Yes | 1 No |
what is alternate index?
what is the compile process of cobol program expalin with code
How many days does a job remain in spool
How Can we see all generations of a GDG ?
How can values be passed from the job stream to an executable program?
how you can direct the data to spool using SYSOUT option?
a job have 5 steps and it will executes a proc which have 5steps in it. now i have to execute step3 only when step2 of proc executes successfully
what happens in conversion stage in job processing?
Is acct parameter mandatory?
How to copy one PS file to multiple PS files with same data?
Explain about LMPUT-
If a JOBSTEP abends, AND without using COND also, all the subsequent steps execute, then what is the use of using EVEN ? Why do we use EVEN when without it also all the JOBSTEPs execute ?