Show / Hide Table of Contents

Class MySqlDataVerificationTableRowCountSummary

Table row count comparison result line for MySQL migrations.

Inheritance
object
DataVerificationTableRowCountSummary
MySqlDataVerificationTableRowCountSummary
Inherited Members
DataVerificationTableRowCountSummary.Owner
DataVerificationTableRowCountSummary.TableName
DataVerificationTableRowCountSummary.SourceRowCount
DataVerificationTableRowCountSummary.TargetRowCount
DataVerificationTableRowCountSummary.VariancePercent
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class MySqlDataVerificationTableRowCountSummary : DataVerificationTableRowCountSummary

Properties

TimeLastSourceStatisticsCollection

Declaration
[Required(ErrorMessage = "TimeLastSourceStatisticsCollection is required.")]
[JsonProperty(PropertyName = "timeLastSourceStatisticsCollection")]
public DateTime? TimeLastSourceStatisticsCollection { get; set; }
Property Value
Type Description
DateTime?

Time of last statistics collection in the source used for the dictionary-based row count estimate. This value is reported per row because statistics can be collected at different times per object. This timestamp is stored in UTC.

Remarks

Required

TimeLastTargetStatisticsCollection

Declaration
[Required(ErrorMessage = "TimeLastTargetStatisticsCollection is required.")]
[JsonProperty(PropertyName = "timeLastTargetStatisticsCollection")]
public DateTime? TimeLastTargetStatisticsCollection { get; set; }
Property Value
Type Description
DateTime?

Time of last statistics collection in the target used for the dictionary-based row count estimate. This value is reported per row because statistics can be collected at different times per object. This timestamp is stored in UTC.

Remarks

Required

In this article
Back to top