Categories

Follow our news:

Follow canonburysvcs on Twitter Follow Canonbury Services on Facebook Follow Canonbury Services' news by RSS Follow Canonbury Services' news by Atom Follow Canonbury Services' news by email

NEWS & TECH BLOG

Maintenance plans in SQL 2005

01/05/2009 – in OS / Environment

SQL 2005 isn’t quite as friendly as SQL 2000, and there are a couple of things you have to do before you can set up a maintenance plan.

Firstly, SQL Integration Services (SSIS) have to be installed otherwise you get an error that says ‘specified @subsystem is invalid’ (I love those informative error messages!).

http://support.microsoft.com/kb/909036 talks about this in some detail, and tells you how to install SSIS.

Secondly, you have to run a script in Management Studio to turn on the Agent XPs:

sp_configure ‘show advanced options’, 1;
GO
RECONFIGURE;
GO
sp_configure ‘Agent XPs’, 1;
GO
RECONFIGURE
GO

Share