Agent xps’ component is turned off as part of the security configuration for this server
Sql server üzerinde Maintenance Plan ayarı yapmak istediğinizde “Agent xps’ component is turned off as part of the security configuration for this server” şeklinde bir hata ile karşılaşabilirsiniz.
Bu durumda yapılması gereken;
sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'Agent XPs', 1; GO RECONFIGURE GO
sql kodunu çalıştırmak olacaktır. Bu sayede Agent XPs etkin hale gelecektir.