SQL SERVER – Fix – Agent Starting Error 15281 – SQL Server blocked access to procedure ‘dbo.sp_get_sqlagent_properties’ of component ‘Agent XPs’ because this component is turned off as part of the security configuration for this server

SQL Server Agent fails to start because of the error 15281 is a very common error.

SQL SERVER - Fix - Agent Starting Error 15281 - SQL Server blocked access to procedure 'dbo.sp_get_sqlagent_properties' of component 'Agent XPs' because this component is turned off as part of the security configuration for this server agenterror1

When you start to restart SQL Agent sometimes it will give following error.

SQL Server blocked access to procedure ‘dbo.sp_get_sqlagent_properties’ of component ‘Agent XPs’ because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of ‘Agent XPs’ by using sp_configure. For more information about enabling ‘Agent XPs’, search for ‘Agent XPs’ in SQL Server Books Online. (Microsoft SQL Server, Error: 15281)

SQL SERVER - Fix - Agent Starting Error 15281 - SQL Server blocked access to procedure 'dbo.sp_get_sqlagent_properties' of component 'Agent XPs' because this component is turned off as part of the security configuration for this server agenterror2

To resolve this error, following script has to be executed on the server.

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



When you run above script, it will give a very similar output as following on the screen.

SQL SERVER - Fix - Agent Starting Error 15281 - SQL Server blocked access to procedure 'dbo.sp_get_sqlagent_properties' of component 'Agent XPs' because this component is turned off as part of the security configuration for this server agenterror3

Now, if you try to restart SQL Agent it will just work fine.

SQL SERVER - Fix - Agent Starting Error 15281 - SQL Server blocked access to procedure 'dbo.sp_get_sqlagent_properties' of component 'Agent XPs' because this component is turned off as part of the security configuration for this server agenterror4

That’s it! Sometimes there is a simpler solution to complicated error.

Reference: Pinal Dave https://blog.sqlauthority.com/ )

SQL Error Messages, SQL Scripts, SQL Server Agent
Previous Post
SQL SERVER – Poll – What would you love to see in SQL in Sixty Seconds?
Next Post
SQL SERVER – Copy Database – SQL in Sixty Seconds #067

Related Posts

10 Comments. Leave new

Leave a Reply