ExecutionStatistics Constructors

Definition

Overloads

ExecutionStatistics()

Initializes a new instance of the ExecutionStatistics class.

ExecutionStatistics(Nullable<Int64>, Nullable<Double>, Nullable<Double>, IDictionary<String,WaitStatistics>, Nullable<Boolean>, IList<String>)

Initializes a new instance of the ExecutionStatistics class.

ExecutionStatistics()

Initializes a new instance of the ExecutionStatistics class.

public ExecutionStatistics ();
Public Sub New ()

Applies to

ExecutionStatistics(Nullable<Int64>, Nullable<Double>, Nullable<Double>, IDictionary<String,WaitStatistics>, Nullable<Boolean>, IList<String>)

Initializes a new instance of the ExecutionStatistics class.

public ExecutionStatistics (long? executionCount = default, double? cpuTimeMS = default, double? elapsedTimeMS = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataMigration.Models.WaitStatistics> waitStats = default, bool? hasErrors = default, System.Collections.Generic.IList<string> sqlErrors = default);
new Microsoft.Azure.Management.DataMigration.Models.ExecutionStatistics : Nullable<int64> * Nullable<double> * Nullable<double> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataMigration.Models.WaitStatistics> * Nullable<bool> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.DataMigration.Models.ExecutionStatistics
Public Sub New (Optional executionCount As Nullable(Of Long) = Nothing, Optional cpuTimeMS As Nullable(Of Double) = Nothing, Optional elapsedTimeMS As Nullable(Of Double) = Nothing, Optional waitStats As IDictionary(Of String, WaitStatistics) = Nothing, Optional hasErrors As Nullable(Of Boolean) = Nothing, Optional sqlErrors As IList(Of String) = Nothing)

Parameters

executionCount
Nullable<Int64>

No. of query executions

cpuTimeMS
Nullable<Double>

CPU Time in millisecond(s) for the query execution

elapsedTimeMS
Nullable<Double>

Time taken in millisecond(s) for executing the query

waitStats
IDictionary<String,WaitStatistics>

Dictionary of sql query execution wait types and the respective statistics

hasErrors
Nullable<Boolean>

Indicates whether the query resulted in an error

sqlErrors
IList<String>

List of sql Errors

Applies to