View or Modify the Properties of a Policy-Based Management Policy
This topic describes how to view or modify a Policy-Based Management policy's properties in SQL Server 2012 by using SQL Server Management Studio or Transact-SQL.
In This Topic
Before you begin:
Security
To view or modify a policy's properties, using:
SQL Server Management Studio
Transact-SQL
Before You Begin
Security
Permissions
Requires membership in the PolicyAdministratorRole role in the msdb database.
[Top]
Using SQL Server Management Studio
To view the properties of all policies on an object
In Object Explorer, right-click a server, server object, database, or database object, point to Policies and select View. For more information on the available options in the View Policies – object_name dialog box, see View Policies Dialog Box.
When finished, click Close.
To view or modify a specific policy's properties
In Object Explorer, click the plus sign to expand the server that contains the Policy-Based Management policy 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 Policies folder.
Right-click the policy that you want to view or modify and select Properties. For more information on the available options in the Open Policy – policy_name dialog box, see Create New Policy or Open Policy Dialog Box, General Page and Create New Policy or Open Policy Dialog Box, Description Page.
When finished, click OK.
[Top]
Using Transact-SQL
To view a policy's properties
In Object Explorer, connect to an instance of Database Engine.
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, execution_mode, description, is_enabled, job_id FROM syspolicy_policies; GO
For more information, see syspolicy_policies (Transact-SQL).
[Top]