Class AzureSynapseAnalyticsSchema.DiagEvent
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.pdw_diag_events (Transact-SQL)
Applies to: √ Analytics Platform System (PDW)
Holds information about events that can be included in diagnostic sessions on the system.
See sys.pdw_diag_events.
[Table(Schema = "sys", Name = "pdw_diag_events", IsView = true)]
public class AzureSynapseAnalyticsSchema.DiagEvent
- Inheritance
-
AzureSynapseAnalyticsSchema.DiagEvent
- Extension Methods
Properties
IsEnabled
Whether the event is being published.
[Column("is_enabled")]
[NotNull]
public bool IsEnabled { get; set; }
Property Value
Name
Name of the specific diagnostics event.
[Column("name")]
[NotNull]
public string Name { get; set; }
Property Value
Source
Source of the event (engine, general, dms, etc.)
[Column("source")]
[NotNull]
public string Source { get; set; }