views:

50

answers:

2

Hi guys,

Can anyone know why all the buttons are disabled ?

I am trying to create a Job on SQL Server 2008 R2 Express.

Thanks.

A: 

I do not believe the SQL Agent is included in SQL Express. With SQL 2008, MS started including the creation of the service but I believe it is disabled by default and cannot be started.

Jeff Siver
You mean Sql server Jobs are not supported in Express Edition ?
Joseph Ghassan
@Joseph, yes that is what Jeff said.
DForck42
A: 

Jeff is correct, SQL server agent is not included in any of the express editions of SQL server. You can however still schedule tasks using a combination of sqlcmd and windows task scheduler. It’s a bit crude but does the job!

Kevin Ross