0

I am working on SQL 2012, I already been set up my SQL server agent in automatic start up mode in windows services as well in SQL config. Even though it was not starting automatically. How can I fix this?

Ben Thul
  • 3,024
  • 17
  • 24

2 Answers2

2

What edition of SQL Server are you running?

SQL Server Express does NOT include the Agent. If that's the case, the solution is buying a valid license for a web, standard, developer or enterprise edition - which all include the SQL Server Agent. See the Management Tools section of "Features Supported by the Editions of SQL Server 2012" for details

Rob Moir
  • 31,884
  • 6
  • 58
  • 89
0

Go to run type:

services.msc

Right click on the SQL Server Agent (MSSQLSERVER)

Try to start it manually if you receive any error please share the screenshot or you can check the logs of Event viewer:

Windows +R

Type:

eventvwr

Expand to Windows Logs => Application Logs

Make sure these services are enabled and running:

Event Log : Automatic

Performance Logs and Alerts : Manual

Error Reporting Services: Manual

SQL Server : Automatic

SQL Browser: Automatic

SQL Server Agent: Automatic
Ramesh Chand
  • 251
  • 2
  • 10