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

相关文章:

  • 2021-09-26
  • 2022-03-10
  • 2021-06-12
  • 2021-12-28
  • 2022-01-03
  • 2021-06-18
  • 2022-12-23
  • 2021-09-20
猜你喜欢
  • 2021-12-12
  • 2022-12-23
  • 2021-06-28
  • 2022-12-23
  • 2021-11-03
  • 2022-12-23
相关资源
相似解决方案