Viewing 3 posts - 1 through 3 (of 3 total)
faced this yesterday.. came to this thread.. later found solution and shared.. hope this helps someone ahead 🙂
October 14, 2016 at 12:19 pm
#1906651
Delete the plan using query-
SELECT
s.name AS [Name],
s.id AS [ID]
FROM
msdb.dbo.sysmaintplan_plans AS s
EXECUTE msdb.dbo.sp_maintplan_delete_plan @plan_id=N'{maintenance plan}'
GO
October 13, 2016 at 3:35 pm
#1906472
Worked for me too !! thanks!!
July 19, 2016 at 12:46 pm
#1890939