MS SQL

SQL Server Agent is disabled because “Agent XPs” is set to 0.

SQL Server Agent Execute the below query to enable the

Enable using SQL Query

EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure 'Agent XPs', 1;
GO
RECONFIGURE;
GO

Leave a Reply

Prabhakaran Jayaraman