Show / Hide Table of Contents

Class DataVerificationObjectTypeCountSummary

Object type count comparison summary line.

Inheritance
object
DataVerificationObjectTypeCountSummary
MySqlDataVerificationObjectTypeCountSummary
OracleDataVerificationObjectTypeCountSummary
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(DataVerificationObjectTypeCountSummaryModelConverter))]
public class DataVerificationObjectTypeCountSummary

Properties

DeltaPercent

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

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

Remarks

Required

SchemaName

Declaration
[JsonProperty(PropertyName = "schemaName")]
public string SchemaName { 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.

SourceObjectCount

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

Number of objects in source.

Remarks

Required

TargetObjectCount

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

Number of objects in target.

Remarks

Required

In this article
Back to top