Show / Hide Table of Contents

Class PipelineSchemaTableSummary

Summary of source or target schema tables of a pipeline's assigned connection.

  1. If there is no explicit mapping defined for the pipeline then only matched source and target schema's table names will be returned
  2. If there are explicit mappings defined for the pipeline then along with the mapped source and target schema's table names, the matched source and target schema's table names also will be returned.
Inheritance
object
PipelineSchemaTableSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class PipelineSchemaTableSummary

Properties

SourceTableName

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

The table name from the schema of database connection.

Remarks

Required

TargetTableName

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

The table name from the schema of database connection.

Remarks

Required

In this article
Back to top