Class PolicyBasedManagementSchema.PolicyCategorySubscription
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
syspolicy_policy_category_subscriptions (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Displays one row for each Policy-Based Management subscription in the instance of SQL Server. Each row describes a target and policy category pair. The following table describes the columns in the syspolicy_policy_group_subscriptions view.
[Table(Database = "msdb", Schema = "dbo", Name = "syspolicy_policy_category_subscriptions", IsView = true)]
public class PolicyBasedManagementSchema.PolicyCategorySubscription
- Inheritance
-
PolicyBasedManagementSchema.PolicyCategorySubscription
- Extension Methods
Properties
PolicyCategoryID
ID of the policy category that is applied to the target.
[Column("policy_category_id")]
[NotNull]
public int PolicyCategoryID { get; set; }
Property Value
PolicyCategorySubscriptionID
Identifier of this record.
[Column("policy_category_subscription_id")]
[NotNull]
public int PolicyCategorySubscriptionID { get; set; }
Property Value
TargetObject
Name of the target object.
[Column("target_object")]
[NotNull]
public string TargetObject { get; set; }
Property Value
TargetType
Type of database object that is the target of this subscription.
[Column("target_type")]
[NotNull]
public string TargetType { get; set; }