Home > Database > Mysql Tutorial > SQL2005的维护计划无法删除的解决方法

SQL2005的维护计划无法删除的解决方法

WBOY
Release: 2016-06-07 18:05:06
Original
1014 people have browsed it

今天开发中,发现维护计划无法删除删除了,遂发现下面的代码,希望对碰到类似问题的朋友有所帮助。

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 = ' '
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template