Class AzureSynapseAnalyticsSchema.WorkloadManagementWorkloadClassifier
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.workload_management_workload_classifiers (Transact-SQL)
Applies to: √ Azure Synapse Analytics
Returns details for workload classifiers.
[Table(Schema = "sys", Name = "workload-management-workload-classifiers", IsView = true)]
public class AzureSynapseAnalyticsSchema.WorkloadManagementWorkloadClassifier
- Inheritance
-
AzureSynapseAnalyticsSchema.WorkloadManagementWorkloadClassifier
- Extension Methods
Properties
ClassifierID
Unique ID of the classifier. Is not nullable
[Column("classifier_id")]
[NotNull]
public int ClassifierID { get; set; }
Property Value
CreateTime
Time the classifier was created. Is not nullable.
[Column("create_time")]
[NotNull]
public DateTime CreateTime { get; set; }
Property Value
GroupName
Name of the workload group the classifier is assigned to. Is not nullable. Joinable to sys.workload_management_workload_groups
[Column("group_name")]
[NotNull]
public string GroupName { get; set; }
Property Value
Importance
Is the relative importance of a request in this workload group and across workload groups for shared resources. Importance specified in the classifier overrides the workload group importance setting. Is nullable. When null, the workload group importance setting is used.
Range: low, below_normal, normal (default), above_normal, high
[Column("importance")]
[NotNull]
public string Importance { get; set; }
Property Value
IsEnabled
INTERNAL
[Column("is_enabled")]
[NotNull]
public bool IsEnabled { get; set; }
Property Value
ModifyTime
Time the classifier was last modified. Is not nullable.
[Column("modify_time")]
[NotNull]
public DateTime ModifyTime { get; set; }
Property Value
Name
Name of the classifier. Must be unique to the instance. Is not nullable.
[Column("name")]
[NotNull]
public string Name { get; set; }