Ответ 1
Вам нужно сначала включить расширенные хранимые процедуры агента SQL Server, выполнив следующее.
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Agent XPs', 1;
GO
RECONFIGURE
GO
Когда я пытаюсь создать новый план обслуживания в SQL Server, он показывает эту ошибку:
TITLE: Microsoft SQL Server Management Studio
------------------------------
'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. (ObjectExplorer)
Вам нужно сначала включить расширенные хранимые процедуры агента SQL Server, выполнив следующее.
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Agent XPs', 1;
GO
RECONFIGURE
GO