SQL Server Agent in SQL Server 2005 Express

1

I have always made Maintenance Plans in Sql Server, I have always done them in 2008 and now I have to do it in 2005. The problem is that I can not find in Sql Agent, how can I enable it? Or outright is not possible in this version of SQL.

    
asked by Guillermo Ricardo Spindola Bri 09.08.2016 в 17:50
source

2 answers

1

SQL Server 2005 express does not include SQL Agent. You can check the documentation here . The relevant part is:

  

However, since SQL Server Express does not ship SQL Agent

(However, since SQL Server Express does not include the SQL Agent)

In any case, an alternative would be to create a bat file, execute it using sqlcmd and schedule it in the scheduled windows tasks.

    
answered by 09.08.2016 в 18:00
0

SQL Server Agent is not included in the SQL Server 2005 Express version.

As an option you could use this development to create Jobs in SQL Server 2005 Express developed by Danillo Corrallo :

link

If you install the normal version, here is a guide how to enable it in SQL 2005 from the SQL Service Manager.

    
answered by 09.08.2016 в 18:41