Table of Contents

Class DataCollectorSchema.ExecutionStat

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

syscollector_execution_stats (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Provides information about task execution for a collection set or package.


See dbo.syscollector_execution_stats.

[Table(Database = "msdb", Schema = "dbo", Name = "syscollector_execution_stats", IsView = true)]
public class DataCollectorSchema.ExecutionStat
Inheritance
DataCollectorSchema.ExecutionStat
Extension Methods

Properties

ExecutionRowCountErrors

Number of rows that failed during the data flow. Is nullable.

[Column("execution_row_count_errors")]
[NotNull]
public int ExecutionRowCountErrors { get; set; }

Property Value

int

ExecutionRowCountIn

Number of rows processed at the beginning of data flow. Is nullable.

[Column("execution_row_count_in")]
[NotNull]
public int ExecutionRowCountIn { get; set; }

Property Value

int

ExecutionRowCountOut

Number of rows processed at the end of data flow. Is nullable.

[Column("execution_row_count_out")]
[NotNull]
public int ExecutionRowCountOut { get; set; }

Property Value

int

ExecutionTimeMs

The time, in milliseconds, required for the task to complete. Is nullable.

[Column("execution_time_ms")]
[NotNull]
public int ExecutionTimeMs { get; set; }

Property Value

int

LogID

Identifies each collection set execution. Used to join this view with other detailed logs. Is not nullable.

[Column("log_id")]
[NotNull]
public long LogID { get; set; }

Property Value

long

LogTime

The time that this information was logged. Is not nullable.

[Column("log_time")]
[NotNull]
public DateTime LogTime { get; set; }

Property Value

DateTime

TaskName

The name of the collection set or package task that this information is for. Is not nullable.

[Column("task_name")]
[NotNull]
public string TaskName { get; set; }

Property Value

string