close

SSMS中看到的SQL Server Agent是呈現"Agent XPs Disabled"的狀態,

SQL Server Agent XPs Disabled  

這是因為SQL Server沒有啟用 Agent XPs 的選項,

未啟用這個選項時,在SSMS中就無法查看及使用SQL Server Agent這個節點中的所有功能.

 

查看設置:

SELECT * FROM sys.configurations
WHERE name = 'Agent XPs'

 

啟用Agent XPs:

sp_configure 'show advanced options', 1;
GO

RECONFIGURE;
GO

sp_configure 'Agent XPs', 1;
GO

RECONFIGURE
GO

sp_configure 'show advanced options', 0;
GO

RECONFIGURE
GO

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 泡麵要趁熱才好吃 的頭像
    泡麵要趁熱才好吃

    健忘症補救株式會社

    泡麵要趁熱才好吃 發表在 痞客邦 留言(0) 人氣()