Show / Hide Table of Contents

Class NonADBAutoCreateTablespaceDetails

Migration tablespace settings valid for NON-ADB target type using auto create feature.

Inheritance
object
TargetTypeTablespaceDetails
NonADBAutoCreateTablespaceDetails
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
public class NonADBAutoCreateTablespaceDetails : TargetTypeTablespaceDetails

Properties

BlockSizeInKBs

Declaration
[JsonProperty(PropertyName = "blockSizeInKBs")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DataPumpTablespaceBlockSizesInKb? BlockSizeInKBs { get; set; }
Property Value
Type Description
DataPumpTablespaceBlockSizesInKb?

Size of Oracle database blocks in KB.

ExtendSizeInMBs

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

Size of extend in MB. Can only be specified if 'isBigFile' property is set to true.

IsAutoCreate

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

True to auto-create tablespace in the target Database.

IsBigFile

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

True set tablespace to big file.

In this article
Back to top