Notes for Cloning Autonomous AI Database

Provides information about the cloning operation and the resulting cloned database.

General Notes for Cloning on Autonomous AI Database

Provides general information about the cloning operation and the resulting cloned database.

Notes for Cloning an Autonomous AI Database from a Backup

Provides Notes for cloning an Autonomous AI Database from a backup:

Notes for Cross Tenancy and Cross Region Cloning

Provides information about cross tenancy and cross region cloning.

Resource Management Rules and Performance Data for a Cloned Database

Provides notes for resource management rules and performance data for a cloned database.

The following applies for resource management rules and performance data in a cloned database:

For more information on setting resource management rules, see Manage Runaway SQL Statements on Autonomous AI Database.

Optimizer Statistics for a Cloned Database

During the provisioning for either a Full Clone or a Metadata Clone, the optimizer statistics are copied from the source database to the cloned database.

The following applies for optimizer statistics for tables in a cloned database:

For more information on Optimizer Statistics, see Optimizer Statistics Concepts.

Disable Oracle Scheduler Jobs for a Cloned Database

Oracle Scheduler jobs from a source database are copied to the clone when you perform a clone operation. You can assure that cloned Oracle Scheduler jobs are disabled on the clone.

To disable Oracle Scheduler jobs on Autonomous AI Database instances that are cloned, you can define a trigger using the AFTER CLONE clause. To use the AFTER CLONE clause, define the trigger on the source database before you perform the clone operation.

For example:

CREATE OR REPLACE TRIGGER after_clone_instance
     AFTER CLONE
     ON PLUGGABLE DATABASE
BEGIN
-- Disable specific jobs or use a cursor to grab all scheduled jobs and disable them
     DBMS_SCHEDULER.DISABLE(name=> job_name);
END;
/

See CREATE TRIGGER Statement for more information.

Note the following: