Show / Hide Table of Contents

Class OracleWriteAttributes

Properties to configure when writing to an Oracle Database.

Inheritance
object
AbstractWriteAttribute
OracleWriteAttributes
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class OracleWriteAttributes : AbstractWriteAttribute

Properties

BatchSize

Declaration
[JsonProperty(PropertyName = "batchSize")]
public int? BatchSize { get; set; }
Property Value
Type Description
int?

The batch size for writing.

IsTruncate

Declaration
[JsonProperty(PropertyName = "isTruncate")]
public bool? IsTruncate { get; set; }
Property Value
Type Description
bool?

Specifies whether to truncate.

IsolationLevel

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

Specifies the isolation level.

In this article
Back to top