Class DataVerificationTableRowCountSummary
Table row count comparison result line.
Inheritance
Inherited Members
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.
|
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.
|
Remarks
Required