Table of Contents

Class ServerWideConfigurationSchema.TraceEventBinding

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.trace_event_bindings (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

The sys.trace_event_bindings catalog view contains a list of all possible usage combinations of events and columns. For each event listed in the trace_event_id column, all available columns are listed in the trace_column_id column. Not all available columns are populated each time a given event occurs. These values do not change for a given version of the SQL Server Database Engine.
For a complete list of supported trace events, see SQL Server Event Class Reference.

important


This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Use Extended Event catalog views instead.


See sys.trace_event_bindings.

[Table(Schema = "sys", Name = "trace_event_bindings", IsView = true)]
public class ServerWideConfigurationSchema.TraceEventBinding
Inheritance
ServerWideConfigurationSchema.TraceEventBinding
Extension Methods

Properties

TraceColumnID

ID of the trace column. This column is also in the sys.trace_columns catalog view.

[Column("trace_column_id")]
[NotNull]
public short TraceColumnID { get; set; }

Property Value

short

TraceEventID

ID of the trace event. This column is also in the sys.trace_events catalog view.

[Column("trace_event_id")]
[NotNull]
public short TraceEventID { get; set; }

Property Value

short