Show / Hide Table of Contents

Class DataVerificationTableRowCountSummary

Table row count comparison result line.

Inheritance
object
DataVerificationTableRowCountSummary
MySqlDataVerificationTableRowCountSummary
OracleDataVerificationTableRowCountSummary
Inherited Members
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
[JsonConverter(typeof(DataVerificationTableRowCountSummaryModelConverter))]
public class DataVerificationTableRowCountSummary

Properties

Owner

Declaration
[JsonProperty(PropertyName = "owner")]
public string Owner { get; set; }
Property Value
Type Description
string

Schema/owner name.
This field is omitted (null/empty depending on backend serialization) for database-wide object types that are not schema-scoped.
Oracle non-schema-scoped object types: USER, ROLE, PROFILE, TABLESPACE, DATABASE_LINK, CONTROLFILE, DATAFILE, REDO_LOG, DIRECTORY, LIBRARY, CONTEXT.
MySQL non-schema-scoped object types: USER, ROLE, SERVER, TABLESPACE, LOGFILE_GROUP.

SourceRowCount

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

Row count in source.

Remarks

Required

TableName

Declaration
[Required(ErrorMessage = "TableName is required.")]
[JsonProperty(PropertyName = "tableName")]
public string TableName { get; set; }
Property Value
Type Description
string

Table name.

Remarks

Required

TargetRowCount

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

Row count in target.

Remarks

Required

VariancePercent

Declaration
[Required(ErrorMessage = "VariancePercent is required.")]
[JsonProperty(PropertyName = "variancePercent")]
public double VariancePercent { get; set; }
Property Value
Type Description
double

Percentage variance between source and target row counts. This value is expected to be non-negative.
A negative value indicates that the target has rows not present in the source, which should be treated as an inconsistency (i.e., a failed comparison/report result).

Remarks

Required

In this article
Back to top