刪除SSIS做業時報錯信息:sql
TITLE: Microsoft SQL Server Management Studio
------------------------------this
Failed to retrieve data for this request. (Microsoft.SqlServer.Management.Sdk.Sfc)component
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&LinkId=20476orm
------------------------------
ADDITIONAL INFORMATION:server
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)blog
------------------------------get
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)it
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=11.00.5058&EvtSrc=MSSQLServer&EvtID=15281&LinkId=20476io
------------------------------
BUTTONS:form
OK
------------------------------
解決方法:
啓動Agent XPs
sp_configure 'Agent XPs', 1;GORECONFIGUREGO