Show / Hide Table of Contents

Class UpdateADBDedicatedAutoCreateTablespaceDetails

Auto create tablespace settings that are valid for Dedicated Autonomous Databases.

Inheritance
object
UpdateTargetTypeTablespaceDetails
UpdateADBDedicatedAutoCreateTablespaceDetails
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 UpdateADBDedicatedAutoCreateTablespaceDetails : UpdateTargetTypeTablespaceDetails

Properties

BlockSizeInKBs

Declaration
[JsonProperty(PropertyName = "blockSizeInKBs")]
[JsonConverter(typeof(StringEnumConverter))]
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 to extend the tablespace in MB. Note: Only applicable if 'isBigFile' property is set to true.

IsAutoCreate

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

Set this property to true to auto-create tablespaces in the target Database. Note: This is not applicable for Autonomous Database Serverless databases.

IsBigFile

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

Set this property to true to enable tablespace of the type big file.

In this article
Back to top