sp_syspolicy_purge_health_state (Transact-SQL)
適用於:SQL Server
刪除原則式管理中的原則健康狀態。 原則健全狀況狀態是 物件總管 內的視覺指標(具有紅色 」X“ 的捲動符號),可協助您判斷哪些節點在原則評估失敗。
語法
sp_syspolicy_purge_health_state
[ @target_tree_root_with_id = ] 'target_tree_root_with_id'
[ ; ]
引數
[ @target_tree_root_with_id = ] 'target_tree_root_with_id'
代表您想要清除健全狀態之 物件總管 中的節點。 @target_tree_root_with_id為 nvarchar(400),預設值為 NULL
。
您可以從系統檢視target_query_expression_with_id msdb.dbo.syspolicy_system_health_state
資料列指定值。
傳回碼值
0
(成功) 或 1
(失敗)。
備註
您必須在系統資料庫的內容msdb
中執行sp_syspolicy_purge_health_state
。
如果您在沒有任何參數的情況下執行此預存程式,則會針對 物件總管 中的所有節點刪除系統健全狀況狀態。
權限
需要 PolicyAdministratorRole 固定資料庫角色的成員資格。
重要
可能的認證提升:PolicyAdministratorRole 角色中的使用者可以建立伺服器觸發程式和排程可能會影響 資料庫引擎 實例作業的原則執行。 例如,PolicyAdministratorRole 角色中的使用者可以建立原則,以防止在 資料庫引擎 中建立大部分物件。 由於此可能的認證提升,PolicyAdministratorRole 角色應該只授與信任並控制 資料庫引擎 組態的使用者。
範例
下列範例會刪除 物件總管 中特定節點的健康情況狀態。
EXEC msdb.dbo.sp_syspolicy_purge_health_state
@target_tree_root_with_id = 'Server/Database[@ID=7]';
GO