| title | Configure general properties of Policy-Based Management | |
|---|---|---|
| description | Learn how to configure the properties for Policy-Based Management using SQL Server Management Studio (SSMS) or Transact-SQL (T-SQL). | |
| ms.custom | seo-lt-2019 | |
| ms.date | 03/14/2017 | |
| ms.prod | sql | |
| ms.prod_service | database-engine | |
| ms.reviewer | ||
| ms.technology | security | |
| ms.topic | conceptual | |
| f1_keywords |
|
|
| helpviewer_keywords |
|
|
| ms.assetid | 6d1e0e37-29ea-408a-a055-384984d884be | |
| author | VanMSFT | |
| ms.author | vanto |
[!INCLUDEappliesto-ss-xxxx-xxxx-xxx-md] This topic describes how to configure the properties for Policy-Based Management in [!INCLUDEssCurrent] by using [!INCLUDEssManStudioFull] or [!INCLUDEtsql].
In This Topic
-
Before you begin:
-
To configure Policy-Based Management, using:
Requires membership in the PolicyAdministratorRole fixed database role.
-
In Object Explorer, click the plus sign to expand the server where you want to configure Policy-Based Management properties.
-
Click the plus sign to expand the Management folder.
-
Right-click Policy Management and select Properties.
The following options are available in Policy Management Properties dialog box.
Enabled
Specifies whether Policy-Based Management is enabled.HistoryRetentionInDays
Specifies the number of days that policy evaluation history should be retained. If this value is 0 (the default), the history will not be automatically removed.LogOnSuccess
Specifies whether Policy-Based Management logs successful policy evaluations.-
When this value is false (the default), only failed policy evaluations are logged.
-
When this value is true, both successful and failed policy evaluations are logged.
-
-
When finished, click OK.
-
In Object Explorer, connect to an instance of [!INCLUDEssDE].
-
On the Standard bar, click New Query.
-
Copy and paste the following example into the query window and click Execute.
-- enables Policy-Based Management USE msdb; GO EXEC dbo.sp_syspolicy_configure @name = N'Enabled', @value = 1; GO
For more information, see sp_syspolicy_configure (Transact-SQL).