I am attempting to start SQL Server Agent and I receive this error (from event log):
/>
Qualifiers="49152">324</EventID>
</Event>
How do I determine the cause of this error.
I am running SQL Server 2012, attempting to setup CDC jobs. Ran :
sp_configure 'show advanced options', 1;
GO
RECONFIGURE
go
sp_configure 'Agent XPs', 1;
GO
in SSMS prior to starting the agent.
I cannot find the dbo.sp_get_sql_agent_properties even logging in as SA.
Thanks
Additional information:
Looking at the ERRORLOG, I see these lines:
2013-01-07 13:35:45.98 spid51 Configuration option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install.
2013-01-07 13:36:19.04 spid51 Configuration option 'Agent XPs' changed from 0 to 1. Run the RECONFIGURE statement to install.
I then attempt to start the Agent, and I see this line:
2013-01-07 13:36:52.24 spid54 Configuration option 'Agent XPs' changed from 1 to 0. Run the RECONFIGURE statement to install.
Any idea what's happening?
Thanks