服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - SQL2005的维护计划无法删除的解决方法

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

2020-07-01 15:30MSSQL教程网 Sql Server

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

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 = ' '

延伸 · 阅读

精彩推荐