MS SQL Server de "Agent XPs component is turned off ... " Hata Çözümü
Merhaba MS SQL Server da karşılaştığım sorunu ve çözümünü bu yazımda sizlerle paylaşacağım. Şimdiden yararlı olması dileğiyle ...
HATA:
Agent
XPs' 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', see
"Surface Area Configuration" in SQL Server Books Online.
(Microsoft.SqlServer.Management.MaintenancePlanWizard)
Bu hata "Maintanence Wizard" ı açmak istediğimde bu hata ile karşılaştım. Bunun nedeni; Mesajda da belirttiğim gibi "Agent XPs" etkin olmamasından kaynaklanmaktadır.
ÇÖZÜM:
Bu hatanın iki tane çözüm yolu bulunmakta, benim uyguladığım yöntem aşağıdaki T-SQL kodlarını çalıştırarak oldu.
sp_configure
'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Agent XPs', 1;
GO
RECONFIGURE
GO
Çözüm 2: SQL
Server Agent' ı başlatarak. SQL Server Agent servisini başlattığınızda, Agent
XPs otomatik olarak etkinleştirilir.
Yorumlar
Yorum Gönder