当前位置: > 数据库 > SQL Server 2005 >

SqlServer 2005 无法删除维护计划的解决办法

时间:2014-06-26 01:23来源:linux.it.net.cn 作者:IT网

1、在msdb中先执行下面的语句将维护计划的ID查出。
 

复制代码代码如下:
select   *   from  sysmaintplan_plans

2、将查出的ID填入到下面几句话中的 '' 中,并执行。
 

复制代码代码如下:
delete   from  sysmaintplan_log  where  plan_id  =   ''
delete   from  sysmaintplan_subplans  where  plan_id  =   ''
delete   from  sysmaintplan_plans  where  id  =   ''

3 . 在Sql Agent中删除相应的Job(维护计划会自动建立相应的Job)。

(责任编辑:IT)
------分隔线----------------------------