3

如何在 autosys 中设置每 10 分钟从下午 4 点到下午 5 点运行的作业?

请帮助我如何指定然后开始时间参数。我是这个 JIL 脚本的新手。

另外,我在哪里可以获得有关使用 JIL 脚本安排作业的完整详细信息?

4

3 回答 3

4

You can give the attribute start_mins for every 10 mins with the run_window. You can schedule jobs for every minute but you do not have it in seconds.

date_conditions: 1

days_of_week: all

start_mins: 00,10,20,30,40,50

run_window: "16:00-17:00"

timezone: india
于 2013-12-11T22:48:25.000 回答
1
/* ----------------- template ----------------- */

insert_job: template job_type: c 
box_name: box1
command: <xxx>
machine: <hostname>
owner: <username>
permission: gx,ge
date_conditions: 1
days_of_week: all
start_mins: 0,30
run_window: "16:00-17:00

请参阅备忘单了解更多详情 http://supportconnectw.ca.com/public/autosys/infodocs/autosys_cheatsheet.asp

于 2013-11-01T15:22:01.017 回答
0

利用start_mins: "00,10,20,30,40,50"

于 2017-11-03T18:36:51.900 回答