Skip to content

Latest commit

 

History

History
67 lines (49 loc) · 3.1 KB

File metadata and controls

67 lines (49 loc) · 3.1 KB
title sp_syspolicy_purge_health_state (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql
ms.prod_service database-engine
ms.reviewer
ms.technology system-objects
ms.topic language-reference
f1_keywords
sp_syspolicy_purge_health_state_TSQL
sp_syspolicy_purge_health_state
dev_langs
TSQL
helpviewer_keywords
sp_syspolicy_purge_health_state
ms.assetid 4ba4aa91-4c19-41c7-b70d-5fd9d0e89a5e
author VanMSFT
ms.author vanto

sp_syspolicy_purge_health_state (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2012-xxxx-xxxx-xxx-md]

Deletes the policy health states in Policy-Based Management. Policy health states are visual indicators (a scroll symbol with a red "X") within Object Explorer that enable you to determine which nodes have failed a policy evaluation.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_syspolicy_purge_health_state [ @target_tree_root_with_id = ] 'target_tree_root_with_id'  

Arguments

[ @target_tree_root_with_id = ] 'target_tree_root_with_id' Represents the node in Object Explorer where you want to clear the health state. target_tree_root_with_id is nvarchar(400), with a default of NULL.

You can specify values from the target_query_expression_with_id column of the msdb.dbo.syspolicy_system_health_state system view.

Return Code Values

0 (success) or 1 (failure)

Remarks

You must run sp_syspolicy_purge_health_state in the context of the msdb system database.

If you run this stored procedure without any parameters, the system health state is deleted for all nodes in Object Explorer.

Permissions

Requires membership in the PolicyAdministratorRole fixed database role.

Important

Possible elevation of credentials: Users in the PolicyAdministratorRole role can create server triggers and schedule policy executions that can affect the operation of the instance of the [!INCLUDEssDE]. For example, users in the PolicyAdministratorRole role can create a policy that can prevent most objects from being created in the [!INCLUDEssDE]. Because of this possible elevation of credentials, the PolicyAdministratorRole role should be granted only to users who are trusted with controlling the configuration of the [!INCLUDEssDE].

Examples

The following example deletes the health states for a specific node in Object Explorer.

EXEC msdb.dbo.sp_syspolicy_purge_health_state @target_tree_root_with_id = 'Server/Database[@ID=7]';  
  
GO  

See Also

Policy-Based Management Stored Procedures (Transact-SQL)