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.
[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
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
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
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
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
LogTime
The time that this information was logged. Is not nullable.
[Column("log_time")]
[NotNull]
public DateTime LogTime { get; set; }
Property Value
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; }