RSS Links

 

Here are all of the RSS links for sections of this site

VB.NET/ASP.NET
 Java
 Unix/Linux
 Windows
 SQL Server

Home arrow SQL Server arrow Enabling AgentXPs in SQL Server 2008
Enabling AgentXPs in SQL Server 2008 PDF Print E-mail
Thursday, 03 September 2009
To run maintenance plans you need to have AgentXPs enabled.

To enable this in SQL Server 2008 use

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Agent XPs', 1;
GO
RECONFIGURE
GO

More information at http://msdn.microsoft.com/en-us/library/ms178127.aspx
 
< Prev   Next >
 
Designed by Graham Robinson Software