奇怪的维护计划SubPlans行为:每个SP在奇数时间运行所有其他SP的所有任务

SQL Server 2005:我有3个子计划(SP)计划维护计划(MP)的问题。

SP1 is scheduled to run hourly, SP2 daily at 7.00 and SP3 on sundays at 8.00 

阅读MP的历史我看到发生了什么(我知道这似乎是疯狂的)是:

 11: SP1 runs and executes all the tasks of SP1 SP2 and SP3 12: SP2 runs and does the same 13: SP3 runs and does the same 14: SP1 runs and does the same 

在作业活动监视器中,SP1的上次运行时间为14,SP2和SP3 从未执行过。 所有的SP在工作活动监视器(SP2明天7日SP3下周日8)

你有什么想法发生了什么?

经过很多次尝试,我find了这种行为的原因。 我已经将每个SP的属性Disable设置为“False”,而不是默认的“True”,这将导致只有一个SP被调用时执行所有的SP。