DBMS_CLOUD_OCI_DATABASE_MIGRATION_VARCHAR2_TBL Type 🔗
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_TARGET_TYPE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_target_type_tablespace_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
target_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_target_type_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_target_type_tablespace_details_t (
target_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
target_type
(required) Type of Database Base Migration Target.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ADB_DEDICATED_AUTO_CREATE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-D target type using auto create feature
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_adb_dedicated_auto_create_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_target_type_tablespace_details_t (
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_adb_dedicated_auto_create_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_adb_dedicated_auto_create_tablespace_details_t (
target_type varchar2,
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_adb_dedicated_auto_create_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_target_type_tablespace_details_t type.
Fields
Field
Description
is_auto_create
(optional) True to auto-create tablespace in the target Database.
is_big_file
(optional) True set tablespace to big file.
extend_size_in_m_bs
(optional) Size of extend in MB. Can only be specified if 'isBigFile' property is set to true.
block_size_in_k_bs
(optional) Size of Oracle database blocks in KB.
Allowed values are: 'SIZE_8K', 'SIZE_16K'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ADB_DEDICATED_REMAP_TARGET_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-D target type using remap feature
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_adb_dedicated_remap_target_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_target_type_tablespace_details_t (
remap_target varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_adb_dedicated_remap_target_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_adb_dedicated_remap_target_tablespace_details_t (
target_type varchar2,
remap_target varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_adb_dedicated_remap_target_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_target_type_tablespace_details_t type.
Fields
Field
Description
remap_target
(optional) Name of tablespace at target to which the source database tablespace need to be remapped.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ADB_SERVERLES_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-D target type using remap feature
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_adb_serverles_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_target_type_tablespace_details_t (
remap_target varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_adb_serverles_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_adb_serverles_tablespace_details_t (
target_type varchar2,
remap_target varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_adb_serverles_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_target_type_tablespace_details_t type.
Fields
Field
Description
remap_target
(optional) Name of tablespace at target to which the source database tablespace need to be remapped.
Allowed values are: 'DATA'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ADMIN_CREDENTIALS_T Type 🔗
Database Administrator Credentials details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_admin_credentials_t FORCE AUTHID CURRENT_USER IS OBJECT (
username varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_admin_credentials_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_admin_credentials_t (
username varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
username
(required) Administrator username
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ADVISOR_REPORT_BUCKET_DETAILS_T Type 🔗
Details to access Pre-Migration Advisor report in the specified Object Storage bucket, if any.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_advisor_report_bucket_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
bucket_name varchar2(32767),
namespace varchar2(32767),
object_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_advisor_report_bucket_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_advisor_report_bucket_details_t (
bucket_name varchar2,
namespace varchar2,
object_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bucket_name
(required) Name of the bucket containing the Pre-Migration Advisor report.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ADVISOR_REPORT_LOCATION_DETAILS_T Type 🔗
Details to access Pre-Migration Advisor report.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_advisor_report_location_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
object_storage_details dbms_cloud_oci_database_migration_advisor_report_bucket_details_t,
location_in_source varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_advisor_report_location_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_advisor_report_location_details_t (
object_storage_details dbms_cloud_oci_database_migration_advisor_report_bucket_details_t,
location_in_source varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
object_storage_details
(optional)
location_in_source
(optional) Path in the Source Registered Connection where the Pre-Migration advisor report can be accessed.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ADVISOR_REPORT_T Type 🔗
Pre-Migration advisor report details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_advisor_report_t FORCE AUTHID CURRENT_USER IS OBJECT (
report_location_details dbms_cloud_oci_database_migration_advisor_report_location_details_t,
result varchar2(32767),
number_of_fatal number,
number_of_fatal_blockers number,
number_of_warnings number,
number_of_informational_results number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_advisor_report_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_advisor_report_t (
report_location_details dbms_cloud_oci_database_migration_advisor_report_location_details_t,
result varchar2,
number_of_fatal number,
number_of_fatal_blockers number,
number_of_warnings number,
number_of_informational_results number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) Number of Fatal results in the advisor report.
number_of_fatal_blockers
(required) Number of Fatal Blocker results in the advisor report.
number_of_warnings
(required) Number of Warning results in the advisor report.
number_of_informational_results
(required) Number of Informational results in the advisor report.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ADVISOR_SETTINGS_T Type 🔗
Optional Pre-Migration advisor settings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_advisor_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_skip_advisor number,
is_ignore_errors number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_advisor_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_advisor_settings_t (
is_skip_advisor number,
is_ignore_errors number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_skip_advisor
(optional) True to skip the Pre-Migration Advisor execution. Default is false.
is_ignore_errors
(optional) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AGENT_T Type 🔗
ODMS Agent Details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_agent_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
stream_id varchar2(32767),
public_key varchar2(32767),
version varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
stream_id varchar2,
public_key varchar2,
version varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource
display_name
(required) ODMS Agent name
compartment_id
(required) OCID of the compartment
stream_id
(required) The OCID of the Stream
public_key
(optional) ODMS Agent public key.
version
(required) ODMS Agent version
time_created
(required) The time the Agent was created. An RFC3339 formatted datetime string.
time_updated
(required) The time of the last Agent details update. An RFC3339 formatted datetime string.
lifecycle_state
(required) The current state of the ODMS on-premises Agent.
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AGENT_SUMMARY_T Type 🔗
ODMS Agent Details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_agent_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
stream_id varchar2(32767),
version varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
stream_id varchar2,
version varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource
display_name
(required) ODMS Agent name
compartment_id
(required) OCID of the compartment
stream_id
(optional) The OCID of the Stream
version
(required) ODMS Agent version
time_created
(required) The time the Agent was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time of the last Agent details update. An RFC3339 formatted datetime string.
lifecycle_state
(required) The current state of the ODMS on-premises Agent.
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AGENT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_agent_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_agent_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_agent_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AGENT_COLLECTION_T Type 🔗
Results of an Agent search. Contains AgentSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_agent_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_agent_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_collection_t (
items dbms_cloud_oci_database_migration_agent_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AGENT_IMAGE_SUMMARY_T Type 🔗
Available ODMS Agent Images.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_agent_image_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
version varchar2(32767),
download_url varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_image_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_image_summary_t (
version varchar2,
download_url varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
version
(required) ODMS Agent Image version.
download_url
(required) URL to download Agent Image of the ODMS Agent.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AGENT_IMAGE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_agent_image_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_agent_image_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_agent_image_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AGENT_IMAGE_COLLECTION_T Type 🔗
Results of an ODMS Agent Image search. Contains AgentImageSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_agent_image_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_agent_image_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_image_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_agent_image_collection_t (
items dbms_cloud_oci_database_migration_agent_image_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DATA_TRANSFER_MEDIUM_DETAILS_V2_T Type 🔗
Optional additional properties for dump transfer in source or target host. Default kind is CURL
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) Type of the data transfer medium to use for the datapump
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AWS_S3_DATA_TRANSFER_MEDIUM_DETAILS_T Type 🔗
AWS S3 bucket details used for source Connection resources with RDS_ORACLE type. Only supported for source Connection resources with RDS_ORACLE type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_aws_s3_data_transfer_medium_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t (
name varchar2(32767),
l_region varchar2(32767),
access_key_id varchar2(32767),
secret_access_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_aws_s3_data_transfer_medium_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_aws_s3_data_transfer_medium_details_t (
l_type varchar2,
name varchar2,
l_region varchar2,
access_key_id varchar2,
secret_access_key varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_aws_s3_data_transfer_medium_details_t is a subtype of the dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t type.
Fields
Field
Description
name
(optional) S3 bucket name.
l_region
(optional) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
DBMS_CLOUD_OCI_DATABASE_MIGRATION_AWS_S3_DETAILS_T Type 🔗
AWS S3 bucket details used for source Connection resources with RDS_ORACLE type. Only supported for source Connection resources with RDS_ORACLE type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_aws_s3_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
l_region varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_aws_s3_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_aws_s3_details_t (
name varchar2,
l_region varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) S3 bucket name.
l_region
(required) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CHANGE_AGENT_COMPARTMENT_DETAILS_T Type 🔗
Change Agent compartment details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_change_agent_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_change_agent_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_change_agent_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the resource to.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CHANGE_CONNECTION_COMPARTMENT_DETAILS_T Type 🔗
Change Database Connection compartment details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_change_connection_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_change_connection_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_change_connection_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the resource to.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CHANGE_MIGRATION_COMPARTMENT_DETAILS_T Type 🔗
Change Migration compartment details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_change_migration_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_change_migration_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_change_migration_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the resource to.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DATABASE_OBJECT_T Type 🔗
Database objects to include or exclude from migration
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_database_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
owner varchar2(32767),
object_name varchar2(32767),
l_type varchar2(32767),
is_omit_excluded_table_from_replication number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_database_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_database_object_t (
owner varchar2,
object_name varchar2,
l_type varchar2,
is_omit_excluded_table_from_replication number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
owner
(required) Owner of the object (regular expression is allowed)
object_name
(required) Name of the object (regular expression is allowed)
l_type
(optional) Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
is_omit_excluded_table_from_replication
(optional) Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and that are included in the exludeObjects.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_VAULT_DETAILS_T Type 🔗
OCI Vault details to store migration and connection credentials secrets
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_vault_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
vault_id varchar2(32767),
key_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_vault_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_vault_details_t (
compartment_id varchar2,
vault_id varchar2,
key_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) OCID of the compartment where the secret containing the credentials will be created.
vault_id
(required) OCID of the vault
key_id
(required) OCID of the vault encryption key
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DATABASE_OBJECT_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_database_object_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_database_object_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_database_object_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CLONE_MIGRATION_DETAILS_T Type 🔗
Details that will override an existing Migration configuration that will be cloned.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_clone_migration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
agent_id varchar2(32767),
source_database_connection_id varchar2(32767),
source_container_database_connection_id varchar2(32767),
target_database_connection_id varchar2(32767),
exclude_objects dbms_cloud_oci_database_migration_database_object_tbl,
include_objects dbms_cloud_oci_database_migration_database_object_tbl,
vault_details dbms_cloud_oci_database_migration_create_vault_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_clone_migration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_clone_migration_details_t (
display_name varchar2,
compartment_id varchar2,
agent_id varchar2,
source_database_connection_id varchar2,
source_container_database_connection_id varchar2,
target_database_connection_id varchar2,
exclude_objects dbms_cloud_oci_database_migration_database_object_tbl,
include_objects dbms_cloud_oci_database_migration_database_object_tbl,
vault_details dbms_cloud_oci_database_migration_create_vault_details_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Migration Display Name
compartment_id
(optional) OCID of the compartment
agent_id
(optional) The OCID of the registered on-premises ODMS Agent. Only valid for Offline Logical Migrations.
source_database_connection_id
(required) The OCID of the Source Database Connection.
source_container_database_connection_id
(optional) The OCID of the Source Container Database Connection. Only used for Online migrations. Only Connections of type Non-Autonomous can be used as source container databases.
target_database_connection_id
(required) The OCID of the Target Database Connection.
exclude_objects
(optional) Database objects to exclude from migration, cannot be specified alongside 'includeObjects'
include_objects
(optional) Database objects to include from migration, cannot be specified alongside 'excludeObjects'
vault_details
(optional)
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CONNECT_DESCRIPTOR_T Type 🔗
Connect Descriptor details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_connect_descriptor_t FORCE AUTHID CURRENT_USER IS OBJECT (
host varchar2(32767),
port number,
database_service_name varchar2(32767),
connect_string varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_connect_descriptor_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_connect_descriptor_t (
host varchar2,
port number,
database_service_name varchar2,
connect_string varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
host
(optional) Host of the connect descriptor.
port
(optional) Port of the connect descriptor.
database_service_name
(optional) Database service name.
connect_string
(optional) Connect string.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_SSH_DETAILS_T Type 🔗
Details of the SSH key that will be used.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_ssh_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
host varchar2(32767),
l_user varchar2(32767),
sudo_location varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_ssh_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_ssh_details_t (
host varchar2,
l_user varchar2,
sudo_location varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
host
(required) Name of the host the SSH key is valid for.
l_user
(required) SSH user
sudo_location
(required) Sudo location
DBMS_CLOUD_OCI_DATABASE_MIGRATION_PRIVATE_ENDPOINT_DETAILS_T Type 🔗
OCI Private Endpoint configuration details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_private_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
vcn_id varchar2(32767),
subnet_id varchar2(32767),
id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_private_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_private_endpoint_details_t (
compartment_id varchar2,
vcn_id varchar2,
subnet_id varchar2,
id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment to contain the private endpoint.
vcn_id
(optional) The OCID of the VCN where the Private Endpoint will be bound to.
subnet_id
(optional) The OCID of the customer's subnet where the private endpoint VNIC will reside.
id
(optional) OCID of a previously created Private Endpoint.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_VAULT_DETAILS_T Type 🔗
OCI Vault details to store migration and connection credentials secrets
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_vault_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
vault_id varchar2(32767),
key_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_vault_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_vault_details_t (
compartment_id varchar2,
vault_id varchar2,
key_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) OCID of the compartment where the secret containing the credentials will be created.
vault_id
(required) OCID of the vault
key_id
(required) OCID of the vault encryption key
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CONNECTION_T Type 🔗
Database Connection resource used for migrations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_connection_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
database_type varchar2(32767),
manual_database_sub_type varchar2(32767),
is_dedicated number,
display_name varchar2(32767),
database_id varchar2(32767),
connect_descriptor dbms_cloud_oci_database_migration_connect_descriptor_t,
credentials_secret_id varchar2(32767),
certificate_tdn varchar2(32767),
ssh_details dbms_cloud_oci_database_migration_ssh_details_t,
admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
replication_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
private_endpoint dbms_cloud_oci_database_migration_private_endpoint_details_t,
vault_details dbms_cloud_oci_database_migration_vault_details_t,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
nsg_ids dbms_cloud_oci_database_migration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_connection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_connection_t (
id varchar2,
compartment_id varchar2,
database_type varchar2,
manual_database_sub_type varchar2,
is_dedicated number,
display_name varchar2,
database_id varchar2,
connect_descriptor dbms_cloud_oci_database_migration_connect_descriptor_t,
credentials_secret_id varchar2,
certificate_tdn varchar2,
ssh_details dbms_cloud_oci_database_migration_ssh_details_t,
admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
replication_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
private_endpoint dbms_cloud_oci_database_migration_private_endpoint_details_t,
vault_details dbms_cloud_oci_database_migration_vault_details_t,
lifecycle_state varchar2,
lifecycle_details varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
nsg_ids dbms_cloud_oci_database_migration_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
time_created
(required) The time the Connection resource was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time of the last Connection resource details update. An RFC3339 formatted datetime string.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
nsg_ids
(optional) An array of Network Security Group OCIDs used to define network access for Connections.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CONNECTION_SUMMARY_T Type 🔗
Database Connection Summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_connection_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
database_type varchar2(32767),
manual_database_sub_type varchar2(32767),
is_dedicated number,
display_name varchar2(32767),
database_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
nsg_ids dbms_cloud_oci_database_migration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_connection_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_connection_summary_t (
id varchar2,
compartment_id varchar2,
database_type varchar2,
manual_database_sub_type varchar2,
is_dedicated number,
display_name varchar2,
database_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
nsg_ids dbms_cloud_oci_database_migration_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
nsg_ids
(optional) An array of Network Security Group OCIDs used to define network access for Connections.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CONNECTION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_connection_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_connection_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_connection_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CONNECTION_COLLECTION_T Type 🔗
Results of a Database Connection search. Contains DatabaseConnectionSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_connection_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_connection_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_connection_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_connection_collection_t (
items dbms_cloud_oci_database_migration_connection_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_TARGET_TYPE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
target_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t (
target_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
target_type
(required) Type of Database Base Migration Target.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_ADB_DEDICATED_AUTO_CREATE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-D target type using auto create feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_adb_dedicated_auto_create_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t (
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_adb_dedicated_auto_create_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_adb_dedicated_auto_create_tablespace_details_t (
target_type varchar2,
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_create_adb_dedicated_auto_create_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t type.
Fields
Field
Description
is_auto_create
(optional) True to auto-create tablespace in the target Database.
is_big_file
(optional) True set tablespace to big file.
extend_size_in_m_bs
(optional) Size of extend in MB. Can only be specified if 'isBigFile' property is set to true.
block_size_in_k_bs
(optional) Size of Oracle database blocks in KB.
Allowed values are: 'SIZE_8K', 'SIZE_16K'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_ADB_DEDICATED_REMAP_TARGET_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-D target type using remap feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_adb_dedicated_remap_target_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t (
remap_target varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_adb_dedicated_remap_target_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_adb_dedicated_remap_target_tablespace_details_t (
target_type varchar2,
remap_target varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_create_adb_dedicated_remap_target_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t type.
Fields
Field
Description
remap_target
(optional) Name of tablespace at target to which the source database tablespace need to be remapped.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_ADB_SERVERLES_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-S target type using remap feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_adb_serverles_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_adb_serverles_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_adb_serverles_tablespace_details_t (
target_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_create_adb_serverles_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t type.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_ADMIN_CREDENTIALS_T Type 🔗
Database Administrator Credentials details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_admin_credentials_t FORCE AUTHID CURRENT_USER IS OBJECT (
username varchar2(32767),
password varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_admin_credentials_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_admin_credentials_t (
username varchar2,
password varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
username
(required) Administrator username
password
(required) Administrator password
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_ADVISOR_SETTINGS_T Type 🔗
Optional Pre-Migration advisor settings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_advisor_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_skip_advisor number,
is_ignore_errors number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_advisor_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_advisor_settings_t (
is_skip_advisor number,
is_ignore_errors number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_skip_advisor
(optional) True to skip the Pre-Migration Advisor execution. Default is false.
is_ignore_errors
(optional) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_AWS_S3_DETAILS_T Type 🔗
AWS S3 bucket details used for source Connection resources with RDS_ORACLE type. Only supported for source Connection resources with RDS_ORACLE type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_aws_s3_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
l_region varchar2(32767),
access_key_id varchar2(32767),
secret_access_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_aws_s3_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_aws_s3_details_t (
name varchar2,
l_region varchar2,
access_key_id varchar2,
secret_access_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) S3 bucket name.
l_region
(required) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_CONNECT_DESCRIPTOR_T Type 🔗
Connect Descriptor details. Required for Manual and UserManagerOci connection types. If a Private Endpoint was specified for the Connection, the host should contain a valid IP address.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_connect_descriptor_t FORCE AUTHID CURRENT_USER IS OBJECT (
host varchar2(32767),
port number,
database_service_name varchar2(32767),
connect_string varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_connect_descriptor_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_connect_descriptor_t (
host varchar2,
port number,
database_service_name varchar2,
connect_string varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
host
(optional) Host or IP address of the connect descriptor. Required if no connectString was specified.
port
(optional) Port of the connect descriptor. Required if no connectString was specified.
database_service_name
(optional) Database service name. Required if no connectString was specified.
connect_string
(optional) Connect String. Required if no host, port nor databaseServiceName were specified. If a Private Endpoint was specified in the Connection, the host entry should be a valid IP address. Supported formats: Easy connect: <host>:<port>/<db_service_name> Long format: (description= (address=(port=<port>)(host=<host>))(connect_data=(service_name=<db_service_name>)))
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_SSH_DETAILS_T Type 🔗
Details of the SSH key that will be used. Required for source database Manual and UserManagerOci connection types. Not required for source container database connections.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_ssh_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
host varchar2(32767),
sshkey varchar2(32767),
l_user varchar2(32767),
sudo_location varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_ssh_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_ssh_details_t (
host varchar2,
sshkey varchar2,
l_user varchar2,
sudo_location varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
host
(required) Name of the host the SSH key is valid for.
sshkey
(required) Private SSH key string.
l_user
(required) SSH user
sudo_location
(optional) Sudo location
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_PRIVATE_ENDPOINT_T Type 🔗
OCI Private Endpoint configuration details. Not required for source container database connections, it will default to the specified Source Database Connection Private Endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_private_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
vcn_id varchar2(32767),
subnet_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_private_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_private_endpoint_t (
compartment_id varchar2,
vcn_id varchar2,
subnet_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the private endpoint.
vcn_id
(required) The OCID of the VCN where the Private Endpoint will be bound to.
subnet_id
(required) The OCID of the customer's subnet where the private endpoint VNIC will reside.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_CONNECTION_DETAILS_T Type 🔗
Details to create a Database Connection resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
database_type varchar2(32767),
manual_database_sub_type varchar2(32767),
database_id varchar2(32767),
connect_descriptor dbms_cloud_oci_database_migration_create_connect_descriptor_t,
certificate_tdn varchar2(32767),
tls_wallet varchar2(32767),
tls_keystore varchar2(32767),
ssh_details dbms_cloud_oci_database_migration_create_ssh_details_t,
admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
replication_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
private_endpoint dbms_cloud_oci_database_migration_create_private_endpoint_t,
vault_details dbms_cloud_oci_database_migration_create_vault_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
nsg_ids dbms_cloud_oci_database_migration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_connection_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_connection_details_t (
compartment_id varchar2,
display_name varchar2,
database_type varchar2,
manual_database_sub_type varchar2,
database_id varchar2,
connect_descriptor dbms_cloud_oci_database_migration_create_connect_descriptor_t,
certificate_tdn varchar2,
tls_wallet varchar2,
tls_keystore varchar2,
ssh_details dbms_cloud_oci_database_migration_create_ssh_details_t,
admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
replication_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
private_endpoint dbms_cloud_oci_database_migration_create_private_endpoint_t,
vault_details dbms_cloud_oci_database_migration_create_vault_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
nsg_ids dbms_cloud_oci_database_migration_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) OCID of the compartment
display_name
(optional) Database Connection display name identifier.
(optional) Database manual connection subtype. This value can only be specified for manual connections.
Allowed values are: 'ORACLE', 'RDS_ORACLE'
database_id
(optional) The OCID of the cloud database. Required if the database connection type is Autonomous.
connect_descriptor
(optional)
certificate_tdn
(optional) This name is the distinguished name used while creating the certificate on target database. Requires a TLS wallet to be specified. Not required for source container database connections.
tls_wallet
(optional) cwallet.sso containing containing the TCPS/SSL certificate; base64 encoded String. Not required for source container database connections.
tls_keystore
(optional) keystore.jks file contents; base64 encoded String. Requires a TLS wallet to be specified. Not required for source container database connections.
ssh_details
(optional)
admin_credentials
(required)
replication_credentials
(optional)
private_endpoint
(optional)
vault_details
(required)
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
nsg_ids
(optional) An array of Network Security Group OCIDs used to define network access for Connections.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_HOST_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional additional properties for dump transfer in source or target host. Default kind is CURL
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
wallet_location varchar2(32767),
kind varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t (
wallet_location varchar2,
kind varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
wallet_location
(optional) Directory path to OCI SSL wallet location on Db server node.
kind
(required) Type of dump transfer to use during migration in source or target host. Default kind is CURL
Allowed values are: 'CURL', 'OCI_CLI'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_CURL_TRANSFER_DETAILS_T Type 🔗
Optional properties for Curl-based dump transfer in source or target host.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_curl_transfer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_curl_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_curl_transfer_details_t (
wallet_location varchar2,
kind varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_create_curl_transfer_details_t is a subtype of the dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t type.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_DATA_PUMP_PARAMETERS_T Type 🔗
Optional parameters for Data Pump Export and Import.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_data_pump_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_cluster number,
estimate varchar2(32767),
table_exists_action varchar2(32767),
exclude_parameters dbms_cloud_oci_database_migration_varchar2_tbl,
import_parallelism_degree number,
export_parallelism_degree number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_data_pump_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_data_pump_parameters_t (
is_cluster number,
estimate varchar2,
table_exists_action varchar2,
exclude_parameters dbms_cloud_oci_database_migration_varchar2_tbl,
import_parallelism_degree number,
export_parallelism_degree number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_cluster
(optional) Set to false to force Data Pump worker process to run on one instance.
estimate
(optional) Estimate size of dumps that will be generated.
Allowed values are: 'BLOCKS', 'STATISTICS'
table_exists_action
(optional) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
(optional) Exclude paratemers for Export and Import.
import_parallelism_degree
(optional) Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
export_parallelism_degree
(optional) Maximum number of worker processes that can be used for a Data Pump Export job.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_METADATA_REMAP_T Type 🔗
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_metadata_remap_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
old_value varchar2(32767),
new_value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_metadata_remap_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_metadata_remap_t (
l_type varchar2,
old_value varchar2,
new_value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) Specifies the value which needs to be reset.
new_value
(required) Specifies the new value that oldValue should be translated into.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_DIRECTORY_OBJECT_T Type 🔗
Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_directory_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
path varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_directory_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_directory_object_t (
name varchar2,
path varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Name of directory object in database
path
(optional) Absolute path of directory on database server
DBMS_CLOUD_OCI_DATABASE_MIGRATION_METADATA_REMAP_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_metadata_remap_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_metadata_remap_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_metadata_remap_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_DATA_PUMP_SETTINGS_T Type 🔗
Optional settings for Data Pump Export and Import jobs
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_data_pump_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
job_mode varchar2(32767),
data_pump_parameters dbms_cloud_oci_database_migration_create_data_pump_parameters_t,
metadata_remaps dbms_cloud_oci_database_migration_metadata_remap_tbl,
tablespace_details dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t,
export_directory_object dbms_cloud_oci_database_migration_create_directory_object_t,
import_directory_object dbms_cloud_oci_database_migration_create_directory_object_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_data_pump_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_data_pump_settings_t (
job_mode varchar2,
data_pump_parameters dbms_cloud_oci_database_migration_create_data_pump_parameters_t,
metadata_remaps dbms_cloud_oci_database_migration_metadata_remap_tbl,
tablespace_details dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t,
export_directory_object dbms_cloud_oci_database_migration_create_directory_object_t,
import_directory_object dbms_cloud_oci_database_migration_create_directory_object_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) Defines remapping to be applied to objects as they are processed. Refer to DATA_REMAP
tablespace_details
(optional)
export_directory_object
(optional)
import_directory_object
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_OBJECT_STORE_BUCKET_T Type 🔗
In lieu of a network database link, OCI Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_object_store_bucket_t FORCE AUTHID CURRENT_USER IS OBJECT (
namespace_name varchar2(32767),
bucket_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_object_store_bucket_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_object_store_bucket_t (
namespace_name varchar2,
bucket_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
namespace_name
(required) Namespace name of the object store bucket.
bucket_name
(required) Bucket name.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_DATABASE_LINK_DETAILS_T Type 🔗
Optional details for creating a network database link from OCI database to on-premise database.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_database_link_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
wallet_bucket dbms_cloud_oci_database_migration_create_object_store_bucket_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_database_link_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_database_link_details_t (
name varchar2,
wallet_bucket dbms_cloud_oci_database_migration_create_object_store_bucket_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Name of database link from OCI database to on-premise database. ODMS will create link, if the link does not already exist.
wallet_bucket
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_DATA_TRANSFER_MEDIUM_DETAILS_T Type 🔗
Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified, except for the case of Amazon RDS Oracle as source, where Object Storage Details along with AwsS3Details are required.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_data_transfer_medium_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
database_link_details dbms_cloud_oci_database_migration_create_database_link_details_t,
object_storage_details dbms_cloud_oci_database_migration_create_object_store_bucket_t,
aws_s3_details dbms_cloud_oci_database_migration_create_aws_s3_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_data_transfer_medium_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_data_transfer_medium_details_t (
database_link_details dbms_cloud_oci_database_migration_create_database_link_details_t,
object_storage_details dbms_cloud_oci_database_migration_create_object_store_bucket_t,
aws_s3_details dbms_cloud_oci_database_migration_create_aws_s3_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
database_link_details
(optional)
object_storage_details
(optional)
aws_s3_details
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional additional properties for dump transfer.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_dump_transfer_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t,
target dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t,
shared_storage_mount_target_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_dump_transfer_details_t (
source dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t,
target dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t,
shared_storage_mount_target_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
source
(optional)
target
(optional)
shared_storage_mount_target_id
(optional) OCID of the shared storage mount target
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_EXTRACT_T Type 🔗
Parameters for GoldenGate Extract processes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_extract_t FORCE AUTHID CURRENT_USER IS OBJECT (
performance_profile varchar2(32767),
long_trans_duration number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_extract_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_extract_t (
performance_profile varchar2,
long_trans_duration number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
performance_profile
(optional) Extract performance.
Allowed values are: 'LOW', 'MEDIUM', 'HIGH'
long_trans_duration
(optional) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_GOLDEN_GATE_HUB_T Type 🔗
Details about Oracle GoldenGate Microservices. Required for online logical migration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_golden_gate_hub_t FORCE AUTHID CURRENT_USER IS OBJECT (
rest_admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
source_db_admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
source_container_db_admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
target_db_admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
url varchar2(32767),
source_microservices_deployment_name varchar2(32767),
target_microservices_deployment_name varchar2(32767),
compute_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_golden_gate_hub_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_golden_gate_hub_t (
rest_admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
source_db_admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
source_container_db_admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
target_db_admin_credentials dbms_cloud_oci_database_migration_create_admin_credentials_t,
url varchar2,
source_microservices_deployment_name varchar2,
target_microservices_deployment_name varchar2,
compute_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) Name of GoldenGate Microservices deployment to operate on source database
target_microservices_deployment_name
(optional) Name of GoldenGate Microservices deployment to operate on target database
compute_id
(optional) OCID of GoldenGate Microservices compute instance.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_REPLICAT_T Type 🔗
Parameters for GoldenGate Replicat processes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_replicat_t FORCE AUTHID CURRENT_USER IS OBJECT (
performance_profile varchar2(32767),
map_parallelism number,
min_apply_parallelism number,
max_apply_parallelism number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_replicat_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_replicat_t (
performance_profile varchar2,
map_parallelism number,
min_apply_parallelism number,
max_apply_parallelism number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
performance_profile
(optional) Replicat performance.
Allowed values are: 'LOW', 'HIGH'
map_parallelism
(optional) Number of threads used to read trail files (valid for Parallel Replicat)
min_apply_parallelism
(optional) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
max_apply_parallelism
(optional) Defines the range in which the Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_GOLDEN_GATE_SETTINGS_T Type 🔗
Optional settings for GoldenGate Microservices processes
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_golden_gate_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
extract dbms_cloud_oci_database_migration_create_extract_t,
replicat dbms_cloud_oci_database_migration_create_replicat_t,
acceptable_lag number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_golden_gate_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_golden_gate_settings_t (
extract dbms_cloud_oci_database_migration_create_extract_t,
replicat dbms_cloud_oci_database_migration_create_replicat_t,
acceptable_lag number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
extract
(optional)
replicat
(optional)
acceptable_lag
(optional) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_GOLDEN_GATE_DETAILS_T Type 🔗
Details about Oracle GoldenGate Microservices. Required for online logical migration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_golden_gate_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
hub dbms_cloud_oci_database_migration_create_golden_gate_hub_t,
settings dbms_cloud_oci_database_migration_create_golden_gate_settings_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_golden_gate_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_golden_gate_details_t (
hub dbms_cloud_oci_database_migration_create_golden_gate_hub_t,
settings dbms_cloud_oci_database_migration_create_golden_gate_settings_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
hub
(required)
settings
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DATABASE_CREDENTIALS_T Type 🔗
Database Credentials details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_database_credentials_t FORCE AUTHID CURRENT_USER IS OBJECT (
username varchar2(32767),
password varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_database_credentials_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_database_credentials_t (
username varchar2,
password varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
username
(required) Database username
password
(required) Database password
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_GOLDEN_GATE_SERVICE_DETAILS_T Type 🔗
Details about Oracle GoldenGate GGS Deployment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_golden_gate_service_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
source_container_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
target_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
settings dbms_cloud_oci_database_migration_create_golden_gate_settings_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_golden_gate_service_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_golden_gate_service_details_t (
source_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
source_container_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
target_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
settings dbms_cloud_oci_database_migration_create_golden_gate_settings_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
source_db_credentials
(optional)
source_container_db_credentials
(optional)
target_db_credentials
(optional)
settings
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_MIGRATION_DETAILS_T Type 🔗
(optional) The OCID of the registered ODMS Agent. Only valid for Offline Logical Migrations.
source_database_connection_id
(required) The OCID of the Source Database Connection.
source_container_database_connection_id
(optional) The OCID of the Source Container Database Connection. Only used for Online migrations. Only Connections of type Non-Autonomous can be used as source container databases.
target_database_connection_id
(required) The OCID of the Target Database Connection.
data_transfer_medium_details_v2
(optional)
data_transfer_medium_details
(optional)
dump_transfer_details
(optional)
datapump_settings
(optional)
advisor_settings
(optional)
exclude_objects
(optional) Database objects to exclude from migration, cannot be specified alongside 'includeObjects'
include_objects
(optional) Database objects to include from migration, cannot be specified alongside 'excludeObjects'
csv_text
(optional) Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
golden_gate_details
(optional)
golden_gate_service_details
(optional)
vault_details
(optional)
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_NON_ADB_AUTO_CREATE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for NON-ADB target type using auto create feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_non_adb_auto_create_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t (
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_non_adb_auto_create_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_non_adb_auto_create_tablespace_details_t (
target_type varchar2,
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_create_non_adb_auto_create_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t type.
Fields
Field
Description
is_auto_create
(optional) True to auto-create tablespace in the target Database.
is_big_file
(optional) True set tablespace to big file.
extend_size_in_m_bs
(optional) Size of extend in MB. Can only be specified if 'isBigFile' property is set to true.
block_size_in_k_bs
(optional) Size of Oracle database blocks in KB.
Allowed values are: 'SIZE_8K', 'SIZE_16K'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_NON_ADB_REMAP_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for NON-ADB target type using remap feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_non_adb_remap_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t (
remap_target varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_non_adb_remap_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_non_adb_remap_tablespace_details_t (
target_type varchar2,
remap_target varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_create_non_adb_remap_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_create_target_type_tablespace_details_t type.
Fields
Field
Description
remap_target
(optional) Name of tablespace at target to which the source database tablespace need to be remapped.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CREATE_OCI_CLI_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional dump transfer details for OCI-CLI-based dump transfer in source or target host.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_create_oci_cli_dump_transfer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t (
oci_home varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_oci_cli_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_create_oci_cli_dump_transfer_details_t (
wallet_location varchar2,
kind varchar2,
oci_home varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_create_oci_cli_dump_transfer_details_t is a subtype of the dbms_cloud_oci_database_migration_create_host_dump_transfer_details_t type.
Fields
Field
Description
oci_home
(required) Path to the OCI CLI installation in the node.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_HOST_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional additional properties for dump transfer in source or target host. Default kind is CURL
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_host_dump_transfer_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
wallet_location varchar2(32767),
kind varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_host_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_host_dump_transfer_details_t (
wallet_location varchar2,
kind varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
wallet_location
(optional) Directory path to OCI SSL wallet location on Db server node.
kind
(required) Type of dump transfer to use during migration in source or target host. Default kind is CURL
Allowed values are: 'CURL', 'OCI_CLI'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_CURL_TRANSFER_DETAILS_T Type 🔗
Optional properties for Curl-based dump transfer in source or target host.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_curl_transfer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_host_dump_transfer_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_curl_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_curl_transfer_details_t (
wallet_location varchar2,
kind varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_curl_transfer_details_t is a subtype of the dbms_cloud_oci_database_migration_host_dump_transfer_details_t type.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DATA_PUMP_PARAMETERS_T Type 🔗
Optional parameters for Data Pump Export and Import.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_data_pump_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_cluster number,
estimate varchar2(32767),
table_exists_action varchar2(32767),
exclude_parameters dbms_cloud_oci_database_migration_varchar2_tbl,
import_parallelism_degree number,
export_parallelism_degree number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_data_pump_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_data_pump_parameters_t (
is_cluster number,
estimate varchar2,
table_exists_action varchar2,
exclude_parameters dbms_cloud_oci_database_migration_varchar2_tbl,
import_parallelism_degree number,
export_parallelism_degree number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_cluster
(optional) Set to false to force Data Pump worker processes to run on one instance.
estimate
(optional) Estimate size of dumps that will be generated.
Allowed values are: 'BLOCKS', 'STATISTICS'
table_exists_action
(optional) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
(optional) Exclude paratemers for Export and Import.
import_parallelism_degree
(optional) Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
export_parallelism_degree
(optional) Maximum number of worker processes that can be used for a Data Pump Export job.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DIRECTORY_OBJECT_T Type 🔗
Directory object details, used to define either import or export directory objects in Data Pump Settings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_directory_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
path varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_directory_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_directory_object_t (
name varchar2,
path varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Name of directory object in database
path
(required) Absolute path of directory on database server
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DATA_PUMP_SETTINGS_T Type 🔗
Optional settings for Data Pump Export and Import jobs
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_data_pump_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
job_mode varchar2(32767),
data_pump_parameters dbms_cloud_oci_database_migration_data_pump_parameters_t,
metadata_remaps dbms_cloud_oci_database_migration_metadata_remap_tbl,
tablespace_details dbms_cloud_oci_database_migration_target_type_tablespace_details_t,
export_directory_object dbms_cloud_oci_database_migration_directory_object_t,
import_directory_object dbms_cloud_oci_database_migration_directory_object_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_data_pump_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_data_pump_settings_t (
job_mode varchar2,
data_pump_parameters dbms_cloud_oci_database_migration_data_pump_parameters_t,
metadata_remaps dbms_cloud_oci_database_migration_metadata_remap_tbl,
tablespace_details dbms_cloud_oci_database_migration_target_type_tablespace_details_t,
export_directory_object dbms_cloud_oci_database_migration_directory_object_t,
import_directory_object dbms_cloud_oci_database_migration_directory_object_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) Defines remapping to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure
tablespace_details
(optional)
export_directory_object
(optional)
import_directory_object
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_OBJECT_STORE_BUCKET_T Type 🔗
In lieu of a network database link, OCI Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_object_store_bucket_t FORCE AUTHID CURRENT_USER IS OBJECT (
namespace_name varchar2(32767),
bucket_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_object_store_bucket_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_object_store_bucket_t (
namespace_name varchar2,
bucket_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
namespace_name
(required) Namespace name of the object store bucket.
bucket_name
(required) Bucket name.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DATABASE_LINK_DETAILS_T Type 🔗
Optional details for creating a network database link from OCI database to on-premise database.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_database_link_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
wallet_bucket dbms_cloud_oci_database_migration_object_store_bucket_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_database_link_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_database_link_details_t (
name varchar2,
wallet_bucket dbms_cloud_oci_database_migration_object_store_bucket_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Name of database link from OCI database to on-premise database. ODMS will create link, if the link does not already exist.
wallet_bucket
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DATA_TRANSFER_MEDIUM_DETAILS_T Type 🔗
Data Transfer Medium details for the Migration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_data_transfer_medium_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
database_link_details dbms_cloud_oci_database_migration_database_link_details_t,
object_storage_details dbms_cloud_oci_database_migration_object_store_bucket_t,
aws_s3_details dbms_cloud_oci_database_migration_aws_s3_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_data_transfer_medium_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_data_transfer_medium_details_t (
database_link_details dbms_cloud_oci_database_migration_database_link_details_t,
object_storage_details dbms_cloud_oci_database_migration_object_store_bucket_t,
aws_s3_details dbms_cloud_oci_database_migration_aws_s3_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
database_link_details
(optional)
object_storage_details
(optional)
aws_s3_details
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DB_LINK_DATA_TRANSFER_MEDIUM_DETAILS_T Type 🔗
Optional details for creating a network database link from OCI database to on-premise database.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_db_link_data_transfer_medium_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t (
object_storage_bucket dbms_cloud_oci_database_migration_object_store_bucket_t,
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_db_link_data_transfer_medium_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_db_link_data_transfer_medium_details_t (
l_type varchar2,
object_storage_bucket dbms_cloud_oci_database_migration_object_store_bucket_t,
name varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_db_link_data_transfer_medium_details_t is a subtype of the dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t type.
Fields
Field
Description
object_storage_bucket
(optional)
name
(optional) Name of database link from OCI database to on-premise database. ODMS will create link, if the link does not already exist.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_RESULT_ERROR_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_result_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
issue varchar2(32767),
action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_result_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_result_error_t (
code varchar2,
message varchar2,
issue varchar2,
action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing.
message
(required) A human-readable error string.
issue
(optional) The text describing the root cause of the reported issue
action
(optional) The text describing the action required to fix the issue
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DIAGNOSTICS_RESULT_T Type 🔗
Result from Database Connection Diagnostic action.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_diagnostics_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
result_type varchar2(32767),
error dbms_cloud_oci_database_migration_result_error_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_diagnostics_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_diagnostics_result_t (
result_type varchar2,
error dbms_cloud_oci_database_migration_result_error_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
result_type
(required) Type of the Result (i.e. Success or Failure).
DBMS_CLOUD_OCI_DATABASE_MIGRATION_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional additional properties for dump transfer.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_dump_transfer_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source dbms_cloud_oci_database_migration_host_dump_transfer_details_t,
target dbms_cloud_oci_database_migration_host_dump_transfer_details_t,
shared_storage_mount_target_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_dump_transfer_details_t (
source dbms_cloud_oci_database_migration_host_dump_transfer_details_t,
target dbms_cloud_oci_database_migration_host_dump_transfer_details_t,
shared_storage_mount_target_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
source
(optional)
target
(optional)
shared_storage_mount_target_id
(optional) OCID of the shared storage mount target
DBMS_CLOUD_OCI_DATABASE_MIGRATION_ERROR_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_EXCLUDED_OBJECT_SUMMARY_T Type 🔗
Excluded object summary line.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_excluded_object_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
owner varchar2(32767),
object varchar2(32767),
l_type varchar2(32767),
reason_category varchar2(32767),
source_rule varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_excluded_object_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_excluded_object_summary_t (
owner varchar2,
object varchar2,
l_type varchar2,
reason_category varchar2,
source_rule varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_EXCLUDED_OBJECT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_excluded_object_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_excluded_object_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_excluded_object_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_EXCLUDED_OBJECT_SUMMARY_COLLECTION_T Type 🔗
Results of a Job's Exclude objects output listing. Contains ExcludedObjectSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_excluded_object_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_excluded_object_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_excluded_object_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_excluded_object_summary_collection_t (
items dbms_cloud_oci_database_migration_excluded_object_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_EXTRACT_T Type 🔗
Parameters for Extract processes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_extract_t FORCE AUTHID CURRENT_USER IS OBJECT (
performance_profile varchar2(32767),
long_trans_duration number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_extract_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_extract_t (
performance_profile varchar2,
long_trans_duration number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
performance_profile
(optional) Extract performance.
Allowed values are: 'LOW', 'MEDIUM', 'HIGH'
long_trans_duration
(optional) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_GGS_DEPLOYMENT_T Type 🔗
Details about Oracle GoldenGate GGS Deployment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_ggs_deployment_t FORCE AUTHID CURRENT_USER IS OBJECT (
deployment_id varchar2(32767),
ggs_admin_credentials_secret_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_ggs_deployment_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_ggs_deployment_t (
deployment_id varchar2,
ggs_admin_credentials_secret_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
deployment_id
(required) OCID of a GoldenGate Deployment
ggs_admin_credentials_secret_id
(required) OCID of a VaultSecret containing the Admin Credentials for the GGS Deployment
DBMS_CLOUD_OCI_DATABASE_MIGRATION_GOLDEN_GATE_HUB_T Type 🔗
Details about Oracle GoldenGate Microservices.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_golden_gate_hub_t FORCE AUTHID CURRENT_USER IS OBJECT (
rest_admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
source_db_admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
source_container_db_admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
target_db_admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
url varchar2(32767),
source_microservices_deployment_name varchar2(32767),
target_microservices_deployment_name varchar2(32767),
compute_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_golden_gate_hub_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_golden_gate_hub_t (
rest_admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
source_db_admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
source_container_db_admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
target_db_admin_credentials dbms_cloud_oci_database_migration_admin_credentials_t,
url varchar2,
source_microservices_deployment_name varchar2,
target_microservices_deployment_name varchar2,
compute_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
rest_admin_credentials
(required)
source_db_admin_credentials
(required)
source_container_db_admin_credentials
(optional)
target_db_admin_credentials
(required)
url
(required) Oracle GoldenGate hub's REST endpoint.
source_microservices_deployment_name
(required) Name of GoldenGate deployment to operate on source database
target_microservices_deployment_name
(required) Name of GoldenGate deployment to operate on target database
compute_id
(optional) OCID of GoldenGate compute instance.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_REPLICAT_T Type 🔗
Parameters for Replicat processes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_replicat_t FORCE AUTHID CURRENT_USER IS OBJECT (
performance_profile varchar2(32767),
map_parallelism number,
min_apply_parallelism number,
max_apply_parallelism number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_replicat_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_replicat_t (
performance_profile varchar2,
map_parallelism number,
min_apply_parallelism number,
max_apply_parallelism number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
performance_profile
(optional) Replicat performance.
Allowed values are: 'LOW', 'HIGH'
map_parallelism
(optional) Number of threads used to read trail files (valid for Parallel Replicat)
min_apply_parallelism
(optional) Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
max_apply_parallelism
(optional) Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_GOLDEN_GATE_SETTINGS_T Type 🔗
Optional settings for Oracle GoldenGate processes
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_golden_gate_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
extract dbms_cloud_oci_database_migration_extract_t,
replicat dbms_cloud_oci_database_migration_replicat_t,
acceptable_lag number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_golden_gate_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_golden_gate_settings_t (
extract dbms_cloud_oci_database_migration_extract_t,
replicat dbms_cloud_oci_database_migration_replicat_t,
acceptable_lag number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
extract
(optional)
replicat
(optional)
acceptable_lag
(optional) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_GOLDEN_GATE_DETAILS_T Type 🔗
Details about Oracle GoldenGate Microservices.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_golden_gate_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
hub dbms_cloud_oci_database_migration_golden_gate_hub_t,
settings dbms_cloud_oci_database_migration_golden_gate_settings_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_golden_gate_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_golden_gate_details_t (
hub dbms_cloud_oci_database_migration_golden_gate_hub_t,
settings dbms_cloud_oci_database_migration_golden_gate_settings_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
hub
(required)
settings
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_GOLDEN_GATE_SERVICE_DETAILS_T Type 🔗
Details about Oracle GoldenGate GGS Deployment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_golden_gate_service_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ggs_deployment dbms_cloud_oci_database_migration_ggs_deployment_t,
settings dbms_cloud_oci_database_migration_golden_gate_settings_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_golden_gate_service_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_golden_gate_service_details_t (
ggs_deployment dbms_cloud_oci_database_migration_ggs_deployment_t,
settings dbms_cloud_oci_database_migration_golden_gate_settings_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ggs_deployment
(optional)
settings
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_PHASE_EXTRACT_ENTRY_T Type 🔗
Job phase extract message.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_phase_extract_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_phase_extract_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_phase_extract_entry_t (
l_type varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_type
(required) Type of extract.
Allowed values are: 'ERROR'
message
(required) Message in entry.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_LOG_LOCATION_BUCKET_DETAILS_T Type 🔗
Details to access log file in the specified Object Storage bucket, if any.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_log_location_bucket_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
bucket_name varchar2(32767),
namespace varchar2(32767),
object_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_log_location_bucket_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_log_location_bucket_details_t (
bucket_name varchar2,
namespace varchar2,
object_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bucket_name
(required) Name of the bucket containing the log file.
namespace
(required) Object Storage namespace.
object_name
(required) Log object name.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_PHASE_EXTRACT_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_phase_extract_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_phase_extract_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_phase_extract_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_PHASE_STATUS_T Type 🔗
Job phase status details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_phase_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
status varchar2(32767),
duration_in_ms number,
is_advisor_report_available number,
issue varchar2(32767),
action varchar2(32767),
extract dbms_cloud_oci_database_migration_phase_extract_entry_tbl,
log_location dbms_cloud_oci_database_migration_log_location_bucket_details_t,
progress number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_phase_status_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_phase_status_t (
name varchar2,
status varchar2,
duration_in_ms number,
is_advisor_report_available number,
issue varchar2,
action varchar2,
extract dbms_cloud_oci_database_migration_phase_extract_entry_tbl,
log_location dbms_cloud_oci_database_migration_log_location_bucket_details_t,
progress number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) True if a Pre-Migration Advisor report is available for this phase. False or null if no report is available.
issue
(optional) The text describing the root cause of the reported issue
action
(optional) The text describing the action required to fix the issue
extract
(optional) Summary of phase status results.
log_location
(optional)
progress
(optional) Percent progress of job phase.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_PHASE_STATUS_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_phase_status_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_phase_status_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_phase_status_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_JOB_PROGRESS_RESOURCE_T Type 🔗
Progress details of a Migration Job.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_job_progress_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
current_status varchar2(32767),
current_phase varchar2(32767),
phases dbms_cloud_oci_database_migration_phase_status_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_job_progress_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_job_progress_resource_t (
current_status varchar2,
current_phase varchar2,
phases dbms_cloud_oci_database_migration_phase_status_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UNSUPPORTED_DATABASE_OBJECT_T Type 🔗
Database objects to exclude from migration
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_unsupported_database_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
owner varchar2(32767),
object_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_unsupported_database_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_unsupported_database_object_t (
l_type varchar2,
owner varchar2,
object_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_type
(optional) Type of unsupported object
Allowed values are: 'GOLDEN_GATE'
owner
(required) Owner of the object (regular expression is allowed)
object_name
(required) Name of the object (regular expression is allowed)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UNSUPPORTED_DATABASE_OBJECT_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_unsupported_database_object_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_unsupported_database_object_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_unsupported_database_object_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_JOB_T Type 🔗
Results of a Database Connection search. Contains DatabaseConnectionSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_job_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
migration_id varchar2(32767),
l_type varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
progress dbms_cloud_oci_database_migration_migration_job_progress_resource_t,
unsupported_objects dbms_cloud_oci_database_migration_unsupported_database_object_tbl,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_t (
id varchar2,
display_name varchar2,
migration_id varchar2,
l_type varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
progress dbms_cloud_oci_database_migration_migration_job_progress_resource_t,
unsupported_objects dbms_cloud_oci_database_migration_unsupported_database_object_tbl,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the Migration Job.
display_name
(required) Name of the job.
migration_id
(required) The OCID of the Migration that this job belongs to.
l_type
(required) The job type.
Allowed values are: 'EVALUATION', 'MIGRATION'
time_created
(required) The time the Migration Job was created. An RFC3339 formatted datetime string
time_updated
(optional) The time the Migration Job was last updated. An RFC3339 formatted datetime string
progress
(optional)
unsupported_objects
(optional) Database objects not supported.
lifecycle_state
(required) The current state of the migration job.
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_JOB_PROGRESS_SUMMARY_T Type 🔗
Summary of the progress of a Migration Job.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_job_progress_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
current_phase varchar2(32767),
current_status varchar2(32767),
job_progress number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_job_progress_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_job_progress_summary_t (
current_phase varchar2,
current_status varchar2,
job_progress number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_JOB_SUMMARY_T Type 🔗
Job description
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_job_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
migration_id varchar2(32767),
l_type varchar2(32767),
progress dbms_cloud_oci_database_migration_migration_job_progress_summary_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_summary_t (
id varchar2,
display_name varchar2,
migration_id varchar2,
l_type varchar2,
progress dbms_cloud_oci_database_migration_migration_job_progress_summary_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the Migration Job.
display_name
(required) Name of the job.
migration_id
(required) The OCID of the Migration that this job belongs to.
l_type
(required) The job type.
Allowed values are: 'EVALUATION', 'MIGRATION'
progress
(optional)
time_created
(required) The time the Migration Job was created. An RFC3339 formatted datetime string
time_updated
(optional) The time the Migration Job was last updated. An RFC3339 formatted datetime string
lifecycle_state
(required) The current state of the migration Deployment.
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_JOB_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_job_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_job_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_job_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_JOB_COLLECTION_T Type 🔗
Results of a Job search. Contains JobSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_job_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_job_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_collection_t (
items dbms_cloud_oci_database_migration_job_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_JOB_OUTPUT_SUMMARY_T Type 🔗
Job output summary line.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_job_output_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_output_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_output_summary_t (
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
message
(required) Job output line.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_JOB_OUTPUT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_job_output_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_job_output_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_job_output_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_JOB_OUTPUT_SUMMARY_COLLECTION_T Type 🔗
Results of a Job output listing. Contains JobOutputSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_job_output_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_job_output_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_output_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_job_output_summary_collection_t (
items dbms_cloud_oci_database_migration_job_output_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_T Type 🔗
Migration resource
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
l_type varchar2(32767),
wait_after varchar2(32767),
agent_id varchar2(32767),
credentials_secret_id varchar2(32767),
source_database_connection_id varchar2(32767),
source_container_database_connection_id varchar2(32767),
target_database_connection_id varchar2(32767),
executing_job_id varchar2(32767),
data_transfer_medium_details_v2 dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t,
data_transfer_medium_details dbms_cloud_oci_database_migration_data_transfer_medium_details_t,
dump_transfer_details dbms_cloud_oci_database_migration_dump_transfer_details_t,
datapump_settings dbms_cloud_oci_database_migration_data_pump_settings_t,
advisor_settings dbms_cloud_oci_database_migration_advisor_settings_t,
exclude_objects dbms_cloud_oci_database_migration_database_object_tbl,
include_objects dbms_cloud_oci_database_migration_database_object_tbl,
golden_gate_service_details dbms_cloud_oci_database_migration_golden_gate_service_details_t,
golden_gate_details dbms_cloud_oci_database_migration_golden_gate_details_t,
vault_details dbms_cloud_oci_database_migration_vault_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_migration timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
l_type varchar2,
wait_after varchar2,
agent_id varchar2,
credentials_secret_id varchar2,
source_database_connection_id varchar2,
source_container_database_connection_id varchar2,
target_database_connection_id varchar2,
executing_job_id varchar2,
data_transfer_medium_details_v2 dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t,
data_transfer_medium_details dbms_cloud_oci_database_migration_data_transfer_medium_details_t,
dump_transfer_details dbms_cloud_oci_database_migration_dump_transfer_details_t,
datapump_settings dbms_cloud_oci_database_migration_data_pump_settings_t,
advisor_settings dbms_cloud_oci_database_migration_advisor_settings_t,
exclude_objects dbms_cloud_oci_database_migration_database_object_tbl,
include_objects dbms_cloud_oci_database_migration_database_object_tbl,
golden_gate_service_details dbms_cloud_oci_database_migration_golden_gate_service_details_t,
golden_gate_details dbms_cloud_oci_database_migration_golden_gate_details_t,
vault_details dbms_cloud_oci_database_migration_vault_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_migration timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource
display_name
(required) Migration Display Name
compartment_id
(required) OCID of the compartment
l_type
(required) Migration type.
Allowed values are: 'ONLINE', 'OFFLINE'
wait_after
(optional) Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
(optional) The OCID of the registered on-premises ODMS Agent. Only valid for Offline Migrations.
credentials_secret_id
(optional) OCID of the Secret in the OCI vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
source_database_connection_id
(required) The OCID of the Source Database Connection.
source_container_database_connection_id
(optional) The OCID of the Source Container Database Connection.
target_database_connection_id
(required) The OCID of the Target Database Connection.
executing_job_id
(optional) OCID of the current ODMS Job in execution for the Migration, if any.
data_transfer_medium_details_v2
(optional)
data_transfer_medium_details
(optional)
dump_transfer_details
(optional)
datapump_settings
(optional)
advisor_settings
(optional)
exclude_objects
(optional) Database objects to exclude from migration. If 'includeObjects' are specified, only exclude object types can be specified with general wildcards (.*) for owner and objectName.
include_objects
(optional) Database objects to include from migration.
golden_gate_service_details
(optional)
golden_gate_details
(optional)
vault_details
(optional)
time_created
(required) The time the Migration was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time of the last Migration details update. An RFC3339 formatted datetime string.
time_last_migration
(optional) The time of last Migration. An RFC3339 formatted datetime string.
lifecycle_state
(required) The current state of the Migration resource.
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_SUMMARY_T Type 🔗
Migration resource
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
l_type varchar2(32767),
source_database_connection_id varchar2(32767),
source_container_database_connection_id varchar2(32767),
target_database_connection_id varchar2(32767),
executing_job_id varchar2(32767),
agent_id varchar2(32767),
vault_details dbms_cloud_oci_database_migration_vault_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_migration timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
l_type varchar2,
source_database_connection_id varchar2,
source_container_database_connection_id varchar2,
target_database_connection_id varchar2,
executing_job_id varchar2,
agent_id varchar2,
vault_details dbms_cloud_oci_database_migration_vault_details_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_migration timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource
display_name
(required) Migration Display Name
compartment_id
(required) OCID of the compartment
l_type
(required) Migration type.
Allowed values are: 'ONLINE', 'OFFLINE'
source_database_connection_id
(required) The OCID of the Source Database Connection.
source_container_database_connection_id
(optional) The OCID of the Source Container Database Connection.
target_database_connection_id
(required) The OCID of the Target Database Connection.
executing_job_id
(optional) OCID of the current ODMS Job in execution for the Migration, if any.
agent_id
(optional) The OCID of the registered on-premises ODMS Agent. Only valid for Offline Migrations.
vault_details
(optional)
time_created
(required) The time the Migration was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time of the last Migration details update. An RFC3339 formatted datetime string.
time_last_migration
(optional) The time of last Migration. An RFC3339 formatted datetime string.
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_migration_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_migration_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_COLLECTION_T Type 🔗
Results of a Migration search. Contains MigrationSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_migration_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_collection_t (
items dbms_cloud_oci_database_migration_migration_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_OBJECT_SUMMARY_T Type 🔗
Database objects to include or exclude from migration
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_object_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
owner varchar2(32767),
object_name varchar2(32767),
l_type varchar2(32767),
object_status varchar2(32767),
is_omit_excluded_table_from_replication number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_object_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_object_summary_t (
owner varchar2,
object_name varchar2,
l_type varchar2,
object_status varchar2,
is_omit_excluded_table_from_replication number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
owner
(required) Owner of the object (regular expression is allowed)
object_name
(required) Name of the object (regular expression is allowed)
l_type
(optional) Type of object to exclude. If not specified, matching owners and object names of type TABLE would be excluded.
object_status
(optional) Object status.
Allowed values are: 'EXCLUDE', 'INCLUDE'
is_omit_excluded_table_from_replication
(optional) Whether an excluded table should be omitted from replication. Only valid for database objects that have are of type TABLE and object status EXCLUDE.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_OBJECT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_migration_object_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_object_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_migration_object_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_OBJECT_COLLECTION_T Type 🔗
Database objects to migrate.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_object_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_migration_object_summary_tbl,
csv_text varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_object_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_object_collection_t (
items dbms_cloud_oci_database_migration_migration_object_summary_tbl,
csv_text varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Database objects to exclude/include from migration
csv_text
(optional) Database objects to exclude/include from migration in CSV format. The items field will be ignored if this field is not null.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_OBJECT_TYPE_SUMMARY_T Type 🔗
Migration Object Type
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_object_type_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_object_type_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_object_type_summary_t (
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Object type name
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_OBJECT_TYPE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_migration_object_type_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_object_type_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_migration_object_type_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_OBJECT_TYPE_SUMMARY_COLLECTION_T Type 🔗
Results of a Migration Object Type listing. Contains MigrationObjectTypeSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_object_type_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_migration_object_type_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_object_type_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_object_type_summary_collection_t (
items dbms_cloud_oci_database_migration_migration_object_type_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_PHASE_SUMMARY_T Type 🔗
Migration Phase Summary of details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_phase_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
recommended_action varchar2(32767),
supported_actions dbms_cloud_oci_database_migration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_phase_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_phase_summary_t (
name varchar2,
recommended_action varchar2,
supported_actions dbms_cloud_oci_database_migration_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) Action recommended for this phase. If not included in the response, there is no recommended action for the phase.
Allowed values are: 'WAIT'
supported_actions
(required) Array of actions for the corresponding phase. Empty array would indicate there is no supported action for the phase.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_PHASE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_migration_phase_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_phase_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_migration_phase_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_MIGRATION_PHASE_COLLECTION_T Type 🔗
Results of a Migration Phase search. Contains a collection of valid ODMS Job Phases.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_migration_phase_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_migration_phase_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_phase_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_migration_phase_collection_t (
items dbms_cloud_oci_database_migration_migration_phase_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_NFS_DATA_TRANSFER_MEDIUM_DETAILS_T Type 🔗
OCI Object Storage bucket will be used to store Data Pump dump files for the migration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_nfs_data_transfer_medium_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_nfs_data_transfer_medium_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_nfs_data_transfer_medium_details_t (
l_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_nfs_data_transfer_medium_details_t is a subtype of the dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t type.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_NON_ADB_AUTO_CREATE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for NON-ADB target type using auto create feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_non_adb_auto_create_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_target_type_tablespace_details_t (
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_non_adb_auto_create_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_non_adb_auto_create_tablespace_details_t (
target_type varchar2,
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_non_adb_auto_create_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_target_type_tablespace_details_t type.
Fields
Field
Description
is_auto_create
(optional) True to auto-create tablespace in the target Database.
is_big_file
(optional) True set tablespace to big file.
extend_size_in_m_bs
(optional) Size of extend in MB. Can only be specified if 'isBigFile' property is set to true.
block_size_in_k_bs
(optional) Size of Oracle database blocks in KB.
Allowed values are: 'SIZE_8K', 'SIZE_16K'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_NON_ADB_REMAP_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for NON-ADB target type using remap feature
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_non_adb_remap_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_target_type_tablespace_details_t (
remap_target varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_non_adb_remap_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_non_adb_remap_tablespace_details_t (
target_type varchar2,
remap_target varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_non_adb_remap_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_target_type_tablespace_details_t type.
Fields
Field
Description
remap_target
(optional) Name of tablespace at target to which the source database tablespace need to be remapped
DBMS_CLOUD_OCI_DATABASE_MIGRATION_OBJECT_STORAGE_DATA_TRANSFER_MEDIUM_DETAILS_T Type 🔗
OCI Object Storage bucket will be used to store Data Pump dump files for the migration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_object_storage_data_transfer_medium_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t (
object_storage_bucket dbms_cloud_oci_database_migration_object_store_bucket_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_object_storage_data_transfer_medium_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_object_storage_data_transfer_medium_details_t (
l_type varchar2,
object_storage_bucket dbms_cloud_oci_database_migration_object_store_bucket_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_object_storage_data_transfer_medium_details_t is a subtype of the dbms_cloud_oci_database_migration_data_transfer_medium_details_v2_t type.
Fields
Field
Description
object_storage_bucket
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_OCI_CLI_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional dump transfer details for OCI-CLI-based dump transfer in source or target host.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_oci_cli_dump_transfer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_host_dump_transfer_details_t (
oci_home varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_oci_cli_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_oci_cli_dump_transfer_details_t (
wallet_location varchar2,
kind varchar2,
oci_home varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_oci_cli_dump_transfer_details_t is a subtype of the dbms_cloud_oci_database_migration_host_dump_transfer_details_t type.
Fields
Field
Description
oci_home
(optional) Path to the OCI CLI installation in the node.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_RESUME_JOB_DETAILS_T Type 🔗
Parameters to specify to resume a Migration Job.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_resume_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
wait_after varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_resume_job_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_resume_job_details_t (
wait_after varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
wait_after
(optional) Name of a migration phase. The Job will wait after executing this phase until Resume Job endpoint is called again.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_START_MIGRATION_DETAILS_T Type 🔗
Parameters to specify to a Migration job operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_start_migration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
wait_after varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_start_migration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_start_migration_details_t (
wait_after varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
wait_after
(optional) Name of a migration phase. The Job will wait after executing this phase until the Resume Job endpoint is called.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_TARGET_TYPE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
target_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t (
target_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
target_type
(required) Type of Database Base Migration Target.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_ADB_DEDICATED_AUTO_CREATE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-D target type using auto create feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_adb_dedicated_auto_create_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t (
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_adb_dedicated_auto_create_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_adb_dedicated_auto_create_tablespace_details_t (
target_type varchar2,
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_adb_dedicated_auto_create_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t type.
Fields
Field
Description
is_auto_create
(optional) True to auto-create tablespace in the target Database.
is_big_file
(optional) True set tablespace to big file.
extend_size_in_m_bs
(optional) Size of extend in MB. Can only be specified if 'isBigFile' property is set to true.
block_size_in_k_bs
(optional) Size of Oracle database blocks in KB.
Allowed values are: 'SIZE_8K', 'SIZE_16K'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_ADB_DEDICATED_REMAP_TARGET_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-D target type using remap target.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_adb_dedicated_remap_target_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t (
remap_target varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_adb_dedicated_remap_target_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_adb_dedicated_remap_target_tablespace_details_t (
target_type varchar2,
remap_target varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_adb_dedicated_remap_target_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t type.
Fields
Field
Description
remap_target
(optional) Name of tablespace at target to which the source database tablespace need to be remapped.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_ADB_SERVERLES_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for ADB-S target type using remap feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_adb_serverles_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_adb_serverles_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_adb_serverles_tablespace_details_t (
target_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_adb_serverles_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t type.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_ADMIN_CREDENTIALS_T Type 🔗
Database Administrator Credentials details. An empty object would result in the removal of the stored details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_admin_credentials_t FORCE AUTHID CURRENT_USER IS OBJECT (
username varchar2(32767),
password varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_admin_credentials_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_admin_credentials_t (
username varchar2,
password varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
username
(optional) Administrator username
password
(optional) Administrator password
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_ADVISOR_SETTINGS_T Type 🔗
Optional Pre-Migration advisor settings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_advisor_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_skip_advisor number,
is_ignore_errors number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_advisor_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_advisor_settings_t (
is_skip_advisor number,
is_ignore_errors number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_skip_advisor
(optional) True to skip the Pre-Migration Advisor execution. Default is false.
is_ignore_errors
(optional) True to not interrupt migration execution due to Pre-Migration Advisor errors. Default is false.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_AGENT_DETAILS_T Type 🔗
ODMS Agent Details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_agent_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
stream_id varchar2(32767),
public_key varchar2(32767),
version varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_agent_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_agent_details_t (
display_name varchar2,
stream_id varchar2,
public_key varchar2,
version varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) ODMS Agent name
stream_id
(optional) The OCID of the Stream
public_key
(optional) ODMS Agent public key.
version
(optional) ODMS Agent version
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_AWS_S3_DETAILS_T Type 🔗
AWS S3 bucket details used for source Connection resources with RDS_ORACLE type. Only supported for source Connection resources with RDS_ORACLE type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_aws_s3_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
l_region varchar2(32767),
access_key_id varchar2(32767),
secret_access_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_aws_s3_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_aws_s3_details_t (
name varchar2,
l_region varchar2,
access_key_id varchar2,
secret_access_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) S3 bucket name.
l_region
(optional) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_CONNECT_DESCRIPTOR_T Type 🔗
Connect Descriptor details. If a Private Endpoint was specified in the Connection, the host entry should be a valid IP address.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_connect_descriptor_t FORCE AUTHID CURRENT_USER IS OBJECT (
host varchar2(32767),
port number,
database_service_name varchar2(32767),
connect_string varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_connect_descriptor_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_connect_descriptor_t (
host varchar2,
port number,
database_service_name varchar2,
connect_string varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
host
(optional) Host or IP address of the connect descriptor.
port
(optional) Port of the connect descriptor.
database_service_name
(optional) Database service name.
connect_string
(optional) Connect String. If specified, this will override the stored connect descriptor details. If a Private Endpoint was specified in the Connection, the host entry should be a valid IP address. Supported formats: Easy connect: <host>:<port>/<db_service_name> Long format: (description= (address=(port=<port>)(host=<host>))(connect_data=(service_name=<db_service_name>)))
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_SSH_DETAILS_T Type 🔗
Details of the SSH key that will be used.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_ssh_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
host varchar2(32767),
sshkey varchar2(32767),
l_user varchar2(32767),
sudo_location varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_ssh_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_ssh_details_t (
host varchar2,
sshkey varchar2,
l_user varchar2,
sudo_location varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
host
(optional) Name of the host the SSH key is valid for.
sshkey
(optional) Private SSH key string.
l_user
(optional) SSH user
sudo_location
(optional) Sudo location
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_PRIVATE_ENDPOINT_T Type 🔗
OCI Private Endpoint configuration details. An empty object would result in the removal of the stored details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_private_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
vcn_id varchar2(32767),
subnet_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_private_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_private_endpoint_t (
compartment_id varchar2,
vcn_id varchar2,
subnet_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment to contain the private endpoint.
vcn_id
(optional) The OCID of the VCN where the Private Endpoint will be bound to.
subnet_id
(optional) The OCID of the customer's subnet where the private endpoint VNIC will reside.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_VAULT_DETAILS_T Type 🔗
OCI Vault details to store migration and connection credentials secrets. An empty object would result in the removal of the stored details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_vault_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
vault_id varchar2(32767),
key_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_vault_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_vault_details_t (
compartment_id varchar2,
vault_id varchar2,
key_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) OCID of the compartment where the secret containing the credentials will be created.
vault_id
(optional) OCID of the vault
key_id
(optional) OCID of the vault encryption key
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_CONNECTION_DETAILS_T Type 🔗
Details to update in a Database Connection resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
database_id varchar2(32767),
connect_descriptor dbms_cloud_oci_database_migration_update_connect_descriptor_t,
certificate_tdn varchar2(32767),
tls_wallet varchar2(32767),
tls_keystore varchar2(32767),
ssh_details dbms_cloud_oci_database_migration_update_ssh_details_t,
admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
replication_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
private_endpoint dbms_cloud_oci_database_migration_update_private_endpoint_t,
vault_details dbms_cloud_oci_database_migration_update_vault_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
nsg_ids dbms_cloud_oci_database_migration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_connection_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_connection_details_t (
display_name varchar2,
database_id varchar2,
connect_descriptor dbms_cloud_oci_database_migration_update_connect_descriptor_t,
certificate_tdn varchar2,
tls_wallet varchar2,
tls_keystore varchar2,
ssh_details dbms_cloud_oci_database_migration_update_ssh_details_t,
admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
replication_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
private_endpoint dbms_cloud_oci_database_migration_update_private_endpoint_t,
vault_details dbms_cloud_oci_database_migration_update_vault_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
nsg_ids dbms_cloud_oci_database_migration_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Database Connection display name identifier.
database_id
(optional) The OCID of the cloud database.
connect_descriptor
(optional)
certificate_tdn
(optional) This name is the distinguished name used while creating the certificate on target database. Not required for source container database connections.
tls_wallet
(optional) cwallet.sso containing containing the TCPS/SSL certificate; base64 encoded String. Not required for source container database connections.
tls_keystore
(optional) keystore.jks file contents; base64 encoded String. Not required for source container database connections.
ssh_details
(optional)
admin_credentials
(optional)
replication_credentials
(optional)
private_endpoint
(optional)
vault_details
(optional)
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
nsg_ids
(optional) An array of Network Security Group OCIDs used to define network access for Connections.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_HOST_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional additional properties for dump transfer in source or target host. Default kind is CURL
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
wallet_location varchar2(32767),
kind varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t (
wallet_location varchar2,
kind varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
wallet_location
(optional) Directory path to OCI SSL wallet location on Db server node.
kind
(required) Type of dump transfer to use during migration in source or target host. Default kind is CURL
Allowed values are: 'CURL', 'OCI_CLI'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_CURL_TRANSFER_DETAILS_T Type 🔗
Optional properties for Curl-based dump transfer in source or target host.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_curl_transfer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_curl_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_curl_transfer_details_t (
wallet_location varchar2,
kind varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_curl_transfer_details_t is a subtype of the dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t type.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_DATA_PUMP_PARAMETERS_T Type 🔗
Optional parameters for Data Pump Export and Import. If an empty object is specified, the stored Data Pump Parameter details will be removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_data_pump_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_cluster number,
estimate varchar2(32767),
table_exists_action varchar2(32767),
exclude_parameters dbms_cloud_oci_database_migration_varchar2_tbl,
import_parallelism_degree number,
export_parallelism_degree number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_data_pump_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_data_pump_parameters_t (
is_cluster number,
estimate varchar2,
table_exists_action varchar2,
exclude_parameters dbms_cloud_oci_database_migration_varchar2_tbl,
import_parallelism_degree number,
export_parallelism_degree number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_cluster
(optional) Set to false to force Data Pump worker processes to run on one instance.
estimate
(optional) Estimate size of dumps that will be generated.
Allowed values are: 'BLOCKS', 'STATISTICS'
table_exists_action
(optional) IMPORT: Specifies the action to be performed when data is loaded into a preexisting table.
(optional) Exclude paratemers for Export and Import. If specified, the stored list will be replaced.
import_parallelism_degree
(optional) Maximum number of worker processes that can be used for a Data Pump Import job. For an Autonomous Database, ODMS will automatically query its CPU core count and set this property.
export_parallelism_degree
(optional) Maximum number of worker processes that can be used for a Data Pump Export job.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_DIRECTORY_OBJECT_T Type 🔗
Directory object details, used to define either import or export directory objects in Data Pump Settings. Import directory is required for Non-Autonomous target connections. If specified for an autonomous target, it will show an error. Export directory will error if there are database link details specified. If an empty object is specified, the stored Directory Object details will be removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_directory_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
path varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_directory_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_directory_object_t (
name varchar2,
path varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Name of directory object in database
path
(optional) Absolute path of directory on database server
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_DATA_PUMP_SETTINGS_T Type 🔗
Optional settings for Data Pump Export and Import jobs
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_data_pump_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
job_mode varchar2(32767),
data_pump_parameters dbms_cloud_oci_database_migration_update_data_pump_parameters_t,
metadata_remaps dbms_cloud_oci_database_migration_metadata_remap_tbl,
tablespace_details dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t,
export_directory_object dbms_cloud_oci_database_migration_update_directory_object_t,
import_directory_object dbms_cloud_oci_database_migration_update_directory_object_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_data_pump_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_data_pump_settings_t (
job_mode varchar2,
data_pump_parameters dbms_cloud_oci_database_migration_update_data_pump_parameters_t,
metadata_remaps dbms_cloud_oci_database_migration_metadata_remap_tbl,
tablespace_details dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t,
export_directory_object dbms_cloud_oci_database_migration_update_directory_object_t,
import_directory_object dbms_cloud_oci_database_migration_update_directory_object_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) Defines remappings to be applied to objects as they are processed. Refer to METADATA_REMAP Procedure If specified, the list will be replaced entirely. Empty list will remove stored Metadata Remap details.
tablespace_details
(optional)
export_directory_object
(optional)
import_directory_object
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_OBJECT_STORE_BUCKET_T Type 🔗
OCI Object Storage bucket details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_object_store_bucket_t FORCE AUTHID CURRENT_USER IS OBJECT (
namespace_name varchar2(32767),
bucket_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_object_store_bucket_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_object_store_bucket_t (
namespace_name varchar2,
bucket_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
namespace_name
(optional) Namespace name of the object store bucket.
bucket_name
(optional) Bucket name.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_DATABASE_LINK_DETAILS_T Type 🔗
Optional details for updating a network database link from OCI database to on-premise database.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_database_link_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
wallet_bucket dbms_cloud_oci_database_migration_update_object_store_bucket_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_database_link_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_database_link_details_t (
name varchar2,
wallet_bucket dbms_cloud_oci_database_migration_update_object_store_bucket_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Name of database link from OCI database to on-premise database. ODMS will create link, if the link does not already exist.
wallet_bucket
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_DATA_TRANSFER_MEDIUM_DETAILS_T Type 🔗
Data Transfer Medium details for the Migration. Only one type of data transfer medium can be specified, except for the case of Amazon RDS Oracle as source, where Object Storage Details along with AwsS3Details are required. If an empty object is specified, the stored Data Transfer Medium details will be removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_data_transfer_medium_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
database_link_details dbms_cloud_oci_database_migration_update_database_link_details_t,
object_storage_details dbms_cloud_oci_database_migration_update_object_store_bucket_t,
aws_s3_details dbms_cloud_oci_database_migration_update_aws_s3_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_data_transfer_medium_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_data_transfer_medium_details_t (
database_link_details dbms_cloud_oci_database_migration_update_database_link_details_t,
object_storage_details dbms_cloud_oci_database_migration_update_object_store_bucket_t,
aws_s3_details dbms_cloud_oci_database_migration_update_aws_s3_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
database_link_details
(optional)
object_storage_details
(optional)
aws_s3_details
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional additional properties for dump transfer.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_dump_transfer_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t,
target dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t,
shared_storage_mount_target_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_dump_transfer_details_t (
source dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t,
target dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t,
shared_storage_mount_target_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
source
(optional)
target
(optional)
shared_storage_mount_target_id
(optional) OCID of the shared storage mount target
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_EXTRACT_T Type 🔗
Parameters for Extract processes. If an empty object is specified, the stored Extract details will be removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_extract_t FORCE AUTHID CURRENT_USER IS OBJECT (
performance_profile varchar2(32767),
long_trans_duration number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_extract_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_extract_t (
performance_profile varchar2,
long_trans_duration number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
performance_profile
(optional) Extract performance.
Allowed values are: 'LOW', 'MEDIUM', 'HIGH'
long_trans_duration
(optional) Length of time (in seconds) that a transaction can be open before Extract generates a warning message that the transaction is long-running. If not specified, Extract will not generate a warning on long-running transactions.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_GOLDEN_GATE_HUB_T Type 🔗
Details about Oracle GoldenGate Microservices.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_golden_gate_hub_t FORCE AUTHID CURRENT_USER IS OBJECT (
rest_admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
source_db_admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
source_container_db_admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
target_db_admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
url varchar2(32767),
source_microservices_deployment_name varchar2(32767),
target_microservices_deployment_name varchar2(32767),
compute_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_golden_gate_hub_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_golden_gate_hub_t (
rest_admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
source_db_admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
source_container_db_admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
target_db_admin_credentials dbms_cloud_oci_database_migration_update_admin_credentials_t,
url varchar2,
source_microservices_deployment_name varchar2,
target_microservices_deployment_name varchar2,
compute_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
rest_admin_credentials
(optional)
source_db_admin_credentials
(optional)
source_container_db_admin_credentials
(optional)
target_db_admin_credentials
(optional)
url
(optional) Oracle GoldenGate hub's REST endpoint.
source_microservices_deployment_name
(optional) Name of GoldenGate deployment to operate on source database
target_microservices_deployment_name
(optional) Name of GoldenGate deployment to operate on target database
compute_id
(optional) OCID of GoldenGate compute instance. An empty value will remove the stored computeId.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_REPLICAT_T Type 🔗
Parameters for Replicat processes. If an empty object is specified, the stored Replicat details will be removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_replicat_t FORCE AUTHID CURRENT_USER IS OBJECT (
performance_profile varchar2(32767),
map_parallelism number,
min_apply_parallelism number,
max_apply_parallelism number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_replicat_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_replicat_t (
performance_profile varchar2,
map_parallelism number,
min_apply_parallelism number,
max_apply_parallelism number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
performance_profile
(optional) Replicat performance.
Allowed values are: 'LOW', 'HIGH'
map_parallelism
(optional) Number of threads used to read trail files (valid for Parallel Replicat)
min_apply_parallelism
(optional) Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
max_apply_parallelism
(optional) Defines the range in which Replicat automatically adjusts its apply parallelism (valid for Parallel Replicat)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_GOLDEN_GATE_SETTINGS_T Type 🔗
Optional settings for Oracle GoldenGate processes If an empty object is specified, the stored GoldenGate Settings details will be removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_golden_gate_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
extract dbms_cloud_oci_database_migration_update_extract_t,
replicat dbms_cloud_oci_database_migration_update_replicat_t,
acceptable_lag number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_golden_gate_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_golden_gate_settings_t (
extract dbms_cloud_oci_database_migration_update_extract_t,
replicat dbms_cloud_oci_database_migration_update_replicat_t,
acceptable_lag number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
extract
(optional)
replicat
(optional)
acceptable_lag
(optional) ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_GOLDEN_GATE_DETAILS_T Type 🔗
Details about Oracle GoldenGate Microservices. If an empty object is specified, the stored Golden Gate details will be removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_golden_gate_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
hub dbms_cloud_oci_database_migration_update_golden_gate_hub_t,
settings dbms_cloud_oci_database_migration_update_golden_gate_settings_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_golden_gate_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_golden_gate_details_t (
hub dbms_cloud_oci_database_migration_update_golden_gate_hub_t,
settings dbms_cloud_oci_database_migration_update_golden_gate_settings_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
hub
(optional)
settings
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_GOLDEN_GATE_SERVICE_DETAILS_T Type 🔗
Details about the Oracle GoldenGate Microservices. If an empty object is specified, the stored Golden Gate details will be removed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_golden_gate_service_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
source_container_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
target_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
settings dbms_cloud_oci_database_migration_update_golden_gate_settings_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_golden_gate_service_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_golden_gate_service_details_t (
source_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
source_container_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
target_db_credentials dbms_cloud_oci_database_migration_database_credentials_t,
settings dbms_cloud_oci_database_migration_update_golden_gate_settings_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
source_db_credentials
(optional)
source_container_db_credentials
(optional)
target_db_credentials
(optional)
settings
(optional)
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_JOB_DETAILS_T Type 🔗
Update Job Details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_job_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_job_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Name of the job.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_MIGRATION_DETAILS_T Type 🔗
(optional) The OCID of the Source Database Connection.
source_container_database_connection_id
(optional) The OCID of the Source Container Database Connection. Only used for Online migrations. Only Connections of type Non-Autonomous can be used as source container databases. An empty value would remove the stored Connection ID.
target_database_connection_id
(optional) The OCID of the Target Database Connection.
data_transfer_medium_details_v2
(optional)
data_transfer_medium_details
(optional)
dump_transfer_details
(optional)
datapump_settings
(optional)
advisor_settings
(optional)
exclude_objects
(optional) Database objects to exclude from migration, cannot be specified alongside 'includeObjects'. If specified, the list will be replaced entirely. Empty list will remove stored excludeObjects details.
include_objects
(optional) Database objects to include from migration, cannot be specified alongside 'excludeObjects'. If specified, the list will be replaced entirely. Empty list will remove stored includeObjects details.
golden_gate_service_details
(optional)
golden_gate_details
(optional)
vault_details
(optional)
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_NON_ADB_AUTO_CREATE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for NON-ADB target type using auto create feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_non_adb_auto_create_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t (
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_non_adb_auto_create_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_non_adb_auto_create_tablespace_details_t (
target_type varchar2,
is_auto_create number,
is_big_file number,
extend_size_in_m_bs number,
block_size_in_k_bs varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_non_adb_auto_create_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t type.
Fields
Field
Description
is_auto_create
(optional) True to auto-create tablespace in the target Database.
is_big_file
(optional) True set tablespace to big file.
extend_size_in_m_bs
(optional) Size of extend in MB. Can only be specified if 'isBigFile' property is set to true.
block_size_in_k_bs
(optional) Size of Oracle database blocks in KB.
Allowed values are: 'SIZE_8K', 'SIZE_16K'
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_NON_ADB_REMAP_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for NON-ADB target type using remap feature.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_non_adb_remap_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t (
remap_target varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_non_adb_remap_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_non_adb_remap_tablespace_details_t (
target_type varchar2,
remap_target varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_non_adb_remap_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t type.
Fields
Field
Description
remap_target
(optional) Name of tablespace at target to which the source database tablespace need to be remapped.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_OCI_CLI_DUMP_TRANSFER_DETAILS_T Type 🔗
Optional dump transfer details for OCI-CLI-based dump transfer in source or target host.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_oci_cli_dump_transfer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t (
oci_home varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_oci_cli_dump_transfer_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_oci_cli_dump_transfer_details_t (
wallet_location varchar2,
kind varchar2,
oci_home varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_oci_cli_dump_transfer_details_t is a subtype of the dbms_cloud_oci_database_migration_update_host_dump_transfer_details_t type.
Fields
Field
Description
oci_home
(required) Path to the OCI CLI installation in the node.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_TARGET_DEFAULTS_AUTO_CREATE_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for TARGET_DEFAULTS_AUTOCREATE target type. The service will compute the targetType that corresponds to the targetDatabaseConnectionId type, and set the corresponding default values. When target type is ADB_D or NON_ADB the default will be set to auto-create feature ADB_D_AUTOCREATE or NON_ADB_AUTOCREATE.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_target_defaults_auto_create_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_target_defaults_auto_create_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_target_defaults_auto_create_tablespace_details_t (
target_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_target_defaults_auto_create_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t type.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_UPDATE_TARGET_DEFAULTS_REMAP_TABLESPACE_DETAILS_T Type 🔗
Migration tablespace settings valid for TARGET_DEFAULTS_REMAP target type. The service will compute the targetType that corresponds to the targetDatabaseConnectionId type, and set the corresponding default values. When target type is ADB_S, ADB_D or NON_ADB the default will be set to remap feature ADB_S_REMAP, ADB_D_REMAP or NON_ADB_REMAP.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_update_target_defaults_remap_tablespace_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_target_defaults_remap_tablespace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_update_target_defaults_remap_tablespace_details_t (
target_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_database_migration_update_target_defaults_remap_tablespace_details_t is a subtype of the dbms_cloud_oci_database_migration_update_target_type_tablespace_details_t type.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_RESOURCE_T Type 🔗
A resource that is created or operated on by an asynchronous operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
action_type varchar2(32767),
entity_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_resource_t (
action_type varchar2,
entity_type varchar2,
identifier varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
action_type
(required) The way in which this resource was affected by the operation that spawned the work request.
(required) The resource type the work request affects.
identifier
(required) An OCID or other unique identifier for the resource.
entity_uri
(optional) The URI path that you can use for a GET request to access the resource metadata.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_T Type 🔗
An asynchronous work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_database_migration_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_database_migration_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The OCID of the compartment that contains the work request.
resources
(required) The resources that are affected by this work request.
percent_complete
(required) The percentage complete of the operation tracked by this work request.
time_accepted
(required) The date and time the work request was created, in the format defined by RFC3339.
time_started
(optional) The date and time the work request transitioned from `ACCEPTED` to `IN_PROGRESS`, in the format defined by RFC3339.
time_finished
(optional) The date and time the work request reached a terminal state, either `FAILED` or `SUCCEEDED`. Format is defined by RFC3339.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_SUMMARY_T Type 🔗
A summary of the status of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
operation_type
(required) The asynchronous operation tracked by this work request.
(required) The OCID of the compartment containing this work request.
percent_complete
(required) The percentage complete of the operation tracked by this work request.
time_accepted
(required) The date and time the work request was created, in the format defined by RFC3339.
time_started
(optional) The date and time the work request transitioned from `ACCEPTED` to `IN_PROGRESS`, in the format defined by RFC3339.
time_finished
(optional) The date and time the work request reached a terminal state, either `FAILED` or `SUCCEEDED`. Format is defined by RFC3339.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_COLLECTION_T Type 🔗
Results of a Work Request search. Contains WorkRequestSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_collection_t (
items dbms_cloud_oci_database_migration_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_ERROR_T Type 🔗
An error encountered while executing an operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A machine-usable code for the error that occured. Error codes are listed on API Errors
message
(required) A human-readable error string.
l_timestamp
(required) The time the error occured. An RFC3339 formatted datetime string.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_ERROR_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_ERROR_COLLECTION_T Type 🔗
Results of a Work Request search. Contains WorkRequestError items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_error_collection_t (
items dbms_cloud_oci_database_migration_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Items in collection.
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_LOG_ENTRY_T Type 🔗
A log message from executing an operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
message
(required) A human-readable log message.
l_timestamp
(required) The time the log message was written. An RFC3339 formatted datetime string
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_LOG_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_database_migration_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_database_migration_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATABASE_MIGRATION_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type 🔗
Results of a Work Request search. Contains WorkRequestLogEntry items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_database_migration_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_database_migration_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_database_migration_work_request_log_entry_collection_t (
items dbms_cloud_oci_database_migration_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;