View or Modify the Properties of a Policy-Based Management Condition

Applies to: SQL Server

This topic describes how to view or modify the properties of a Policy-Based Management condition in SQL Server by using SQL Server Management Studio or Transact-SQL.

Before You Begin

Permissions

Requires membership in the PolicyAdministratorRole role in the msdb database.

Using SQL Server Management Studio

To view or modify a condition's properties

  1. In Object Explorer, click the plus sign to expand the server that contains the condition that you want to view or modify.

  2. Click the plus sign to expand the Management folder.

  3. Click the plus sign to expand Policy Management.

  4. Click the plus sign to expand the Conditions folder.

  5. 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.

  6. When finished, click OK.

Using Transact-SQL

To view a condition's properties

  1. In Object Explorer, connect to an instance of Database Engine.

  2. On the Standard bar, click New Query.

  3. 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).