Duplicating an Oracle RAC 19c to a Single Oracle Data Guard 19c

Due to some questions I had while creating a physical Oracle Data Guard in an environment where the primary is a RAC environment and the standby is a single-node environment, both multitenant, I decided to write this article. Check the environment information: HOSTNAME ORACLE VERSION OPERACIONAL SYSTEM ROLE orarac01 19.3.0.0 Oracle Linux 7.9 PRIMARY orarac02 … Mais Duplicating an Oracle RAC 19c to a Single Oracle Data Guard 19c

Error ORA-14404: partitioned table contains partitions in a different tablespace During Duplicate Database With Tablespace Parameter

Last week I got an issue trying to duplicate a database with only READ WRITE tablespaces for a specific table that had many partitions, some of them READ ONLY and others, those I wanted, READ WRITE. The goal for this operation is save time in a disaster event. Unfortunately, using SKIP READONLY command parameter was … Mais Error ORA-14404: partitioned table contains partitions in a different tablespace During Duplicate Database With Tablespace Parameter

Recriating a Standby Database Using Incremental Backup

On this simple article, I am going to show you how to recreate and fix a simple standby database, not using data guard feature, using an incremental backup. Initially, if database is not open, so, open the database in READ ONLY mode. On standby, do that: Now, we need to find the latest standby SCN, … Mais Recriating a Standby Database Using Incremental Backup

Duplicate Database For Standby From Active Database

In this article, we will create a data guard standby database using RMAN active database. For this, we need to configure both servers, primary and secondary, with the listener.ora and tnsnames.ora files, ensuring cross-connections between the servers. This setup allows the primary server to access the database on the secondary server and vice versa. For primary database follow the … Mais Duplicate Database For Standby From Active Database

Duplicate Database Cluster Oracle Environment Using From Active Database

In this article, I will demonstrate how to perform data cloning using the duplicate database method without using a backup, or as some may prefer to call, via active database, on different servers. This method of database cloning without a backup is a feature introduced in version 11g and in previous versions, cloning was only possible if a full backup had … Mais Duplicate Database Cluster Oracle Environment Using From Active Database

Error RMAN-20110 error: set_stamp set_count conflict During Catalog Resync in RMAN Backup on ZDL

I faced in my costumer environment, the issue RMAN-20110, during primary RMAN backup execution. This environment has a primary and data guard databases. To simulate the issue before fix it, simple execute a resync catalog: No backup for that specific database, will execute until you fix it, so, this is a critical issue. To fix … Mais Error RMAN-20110 error: set_stamp set_count conflict During Catalog Resync in RMAN Backup on ZDL

Restore of a Datafile Not Part of the Oracle Data Dictionary Using ZDL Recovery Appliance

In the event of a datafile loss, which is not part of the SYSTEM, SYSAUX, or any other tablespace belonging to the Oracle data dictionary, you can execute the commands below to recover the datafile. Obviously, for this, you must ensure that your backups are up-to-date and intact. The tablespace will remain inaccessible until the … Mais Restore of a Datafile Not Part of the Oracle Data Dictionary Using ZDL Recovery Appliance

Restore of SYSTEM Datafile using ZDL Recovery Appliance in RAC Environment

In a situation where a datafile from the SYSTEM tablespaces is lost, you should execute the following commands to return the database to an operational state. Obviously, for this, you should have up-to-date and intact backups. The database will be inaccessible until a full restoration is completed. In the example below, we will use an … Mais Restore of SYSTEM Datafile using ZDL Recovery Appliance in RAC Environment

How to Restore Lost Control Files in a RAC Environment with Zero Data Loss

To restore a lost control file in a RAC environment, you must ensure that your backups are intact and up-to-date. The process is done in two stages. First, you will need to start only one instance in nomount mode and then perform the control file restore. Next, you will need to restart the instance and bring it … Mais How to Restore Lost Control Files in a RAC Environment with Zero Data Loss