title | description | author | ms.author | ms.date | ms.service | ms.subservice | ms.topic | helpviewer_keywords | ||
---|---|---|---|---|---|---|---|---|---|---|
View or modify properties of a Policy-Based Management condition |
Learn to view or modify properties of a Policy-Based Management condition using SQL Server Management Studio (SSMS) or Transact-SQL (T-SQL). |
VanMSFT |
vanto |
10/05/2016 |
sql |
security |
how-to |
|
[!INCLUDE SQL Server] This topic describes how to view or modify the properties of a Policy-Based Management condition in [!INCLUDEssnoversion] by using [!INCLUDEssManStudioFull] or [!INCLUDEtsql].
Requires membership in the PolicyAdministratorRole role in the msdb database.
-
In Object Explorer, click the plus sign to expand the server that contains the condition that you want to view or modify.
-
Click the plus sign to expand the Management folder.
-
Click the plus sign to expand Policy Management.
-
Click the plus sign to expand the Conditions folder.
-
Right-click the condition that you want to view or edit and select Properties. For more information on the available options in the Open Condition -condition_name dialog box, see Create New Condition or Open Condition Dialog Box, General Page, Open Condition Dialog Box, Dependent Policies Page, Create New Condition or Open Condition Dialog Box, Description Page, and Advanced Edit (Condition) Dialog Box.
-
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.
USE msdb; GO SELECT name, description, facet, expression, is_name_condition, obj_name FROM syspolicy_conditions; GO
For more information, see syspolicy_conditions (Transact-SQL).