Table of Contents

Class ServerWideConfigurationSchema.TraceSubclassValue

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

sys.trace_subclass_values (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

The sys.trace_subclass_values catalog view contains a list of named column values. These subclass 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_subclass_values.

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

Properties

SubclassName

Meaning of the column value.

[Column("subclass_name")]
[Nullable]
public string? SubclassName { get; set; }

Property Value

string

SubclassValue

Column value.

[Column("subclass_value")]
[Nullable]
public short? SubclassValue { get; set; }

Property Value

short?

TraceColumnID

ID of the trace column used for enumeration. This parameter 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 parameter is also in the sys.trace_events catalog view.

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

Property Value

short