SQL Server: Agent XPs Disabled

Recently, on SQL Server where our SSIS jobs were deployed, while trying to expand SQL Server Agent node, we faced error “Agent XPs Disabled” as shown below:

To fix this issue, we executed below queries in the sequence:

EXEC SP_CONFIGURE ‘show advanced options’, 1
GO
RECONFIGURE
GO
EXEC SP_CONFIGURE ‘ show advanced options’

EXEC SP_CONFIGURE ‘Agent XPs’, 1
GO
RECONFIGURE

After executing above queries, we were able to expand SQL Server Agent node.

Hope it helps !!

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.