SQLServer2005 维护计划 无法删除

1.查看"维护计划"对象的ID

use msdb
select * from sysmaintplan_plans
select * from sysmaintplan_log
select * from sysmaintplan_subplans


2.根据ID号删除相应的"维护计划"
delete from sysmaintplan_log where plan_id = ''
delete from sysmaintplan_subplans where subplan_id = ''
delete from sysmaintplan_plans where id = ''

posted @ 2019-05-06 12:04  Net小付  阅读(298)  评论(0编辑  收藏  举报