nec*_*tar 13 sql-server maintenance
当我尝试在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)
Run Code Online (Sandbox Code Playgroud)
Mar*_*ith 49
您需要首先运行以下命令来启用SQL Server代理扩展存储过程.
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Agent XPs', 1;
GO
RECONFIGURE
GO
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
16130 次 |
| 最近记录: |