Skip to content

Latest commit

 

History

History
73 lines (54 loc) · 3 KB

File metadata and controls

73 lines (54 loc) · 3 KB
title sp_syspolicy_set_config_history_retention (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 08/09/2016
ms.prod sql
ms.prod_service database-engine
ms.reviewer
ms.technology system-objects
ms.topic language-reference
f1_keywords
sp_syspolicy_set_config_history_retention_TSQL
sp_syspolicy_set_config_history_retention
dev_langs
TSQL
helpviewer_keywords
sp_syspolicy_set_config_history_retention
ms.assetid 2574898a-e724-4447-b96c-ff778471339d
author VanMSFT
ms.author vanto

sp_syspolicy_set_config_history_retention (Transact-SQL)

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

Specifies the number of days to keep policy evaluation history for Policy-Based Management.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_syspolicy_set_config_history_retention [ @value = ] value  

Arguments

[ @value = ] value Is the number of days to retain Policy-Based Management history. value is sqlvariant.

Return Code Values

0 (success) or 1 (failure)

Remarks

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

If value is set to 0, the history will not be automatically removed.

To view the current value for history retention, run the following query:

SELECT current_value FROM msdb.dbo.syspolicy_configuration  
WHERE name = 'HistoryRetentionInDays'  

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 sets the policy evaluation history retention to 28 days.

EXEC msdb.dbo.sp_syspolicy_set_config_history_retention @value = 28;  
  
GO  

See Also

Policy-Based Management Stored Procedures (Transact-SQL)
sp_syspolicy_configure (Transact-SQL)