SQLServerAgent is not currently running so it cannot be notified of this action
Asked Answered
D

2

8

This is for very first time that I am trying to use SQL server Agent. I get this error :

Msg 22022, Level 16, State 1, Line 0
SQLServerAgent is not currently running so it cannot be notified of this action.

I went to services to check if it was running. I tried to start it and got this immediately . The services then stopped ofcourse.: error

Then I tried with SQL server configuration manager:

On trying to start the service there, enter image description here

When I try to change the log on account via SQL server configuration manager:

enter image description here

How do I get this service started ?

Dub answered 22/3, 2015 at 15:27 Comment(0)
C
2

The SQL Server Express editions does not include the SQL Server Agent component. If you want that you need to use any of the versions that includes it (Enterprise, Business Intelligence, Standard or Web).

Reference: Features Supported by the Editions of SQL Server 2014 (the same limits applies to earlier editions too).

Coom answered 22/3, 2015 at 16:29 Comment(2)
Thank you. So, are all of these paid versions ?Dub
@Dub I believe so, yes. If you just need the functionality of the Agent then there are some possible solutions in this answer: https://mcmap.net/q/153325/-automate-a-sql-query-to-run-every-monthCoom
J
11

It can happen as well that you have SQL Service Agent installed on your server with the database, but as the message says it is not running.

Go to Control Panel -> Administrative Tools -> Services and check if service SQL Service Agent is running.

Jesuit answered 16/10, 2018 at 8:49 Comment(0)
C
2

The SQL Server Express editions does not include the SQL Server Agent component. If you want that you need to use any of the versions that includes it (Enterprise, Business Intelligence, Standard or Web).

Reference: Features Supported by the Editions of SQL Server 2014 (the same limits applies to earlier editions too).

Coom answered 22/3, 2015 at 16:29 Comment(2)
Thank you. So, are all of these paid versions ?Dub
@Dub I believe so, yes. If you just need the functionality of the Agent then there are some possible solutions in this answer: https://mcmap.net/q/153325/-automate-a-sql-query-to-run-every-monthCoom

© 2022 - 2024 — McMap. All rights reserved.