Category: Switching Containers
-
Recovery Catalog Versions – RMAN Backups and Reporting
Read More: Recovery Catalog Versions – RMAN Backups and ReportingI recommend that you create a recovery catalog for each version of the target databases that you are backing up. Doing so will save you some headaches with compatibility issues and upgrades. I have found it easier to use a recovery catalog when the database version of the rman client is the same version used…
-
Put It Together in a Script – RMAN Backups and Reporting
Read More: Put It Together in a Script – RMAN Backups and ReportingAn RMAN script can pull of these configurations together and automate the backup job. The following is an instructional script that shows how these components work together. This gives a basic script for a starting point to understanding the RMAN recommendations and be able to implement them. There is also a good chance that a…
-
Determine the Location for the Snapshot Control File – RMAN Backups and Reporting
Read More: Determine the Location for the Snapshot Control File – RMAN Backups and ReportingRMAN requires a read-consistent view of the control file for the following tasks: • Synchronizing with the recovery catalog • Backing up the current control file RMAN creates a snapshot copy of the current control file that it uses as a read-consistent copy while it is performing these tasks. This ensures that RMAN is working…
-
Starting RMAN – RMAN Backups and Reporting
Read More: Starting RMAN – RMAN Backups and ReportingThere are several components and terms to understand; however, running the backup using RMAN is fairly straightforward. With this understanding, you have all of these options depending on your database. If you are maintaining a database that has 24/7 requirements, you need to be able to effectively back up and restore the database. To connect…
-
Understanding RMAN- RMAN Backups and Reporting
Read More: Understanding RMAN- RMAN Backups and ReportingThe RMAN ecosystem consists of many different components. Figure 13-1 shows the interactions of the main RMAN pieces. Refer to this diagram when reading this section. Figure13-1.RMAN architectural components The following list describes the RMAN architectural components and definitions: • DBA: This is the human interaction to ensure successful backups and restores. • Target database:…
-
Dropping a PDB- Large Objects
Read More: Dropping a PDB- Large ObjectsOccasionally, you may need to drop a PDB. You may want to do so because you do not need the PDB anymore or because you are transferring (unplugging/plugging) to a different CDB and you want to drop the PDB from the original CDB. If you need to remove a PDB, you can do it in…
-
Administrating Pluggable Databases- Large Objects
Read More: Administrating Pluggable Databases- Large ObjectsWe have already covered many administration tasks for CDBs and PDBs. The PDBs are considered application databases or configured for user objects and data. You still have administrative tasks that need to be performed while connected directly to the PDB. You can open/close a PDB, check its status, show currently connected users, and so on.…
-
Refreshable Clone- Large Objects
Read More: Refreshable Clone- Large ObjectsIn creating a clone, it is a copy as of that point in time. A refreshable clone can sync back to the source PDB. This makes this clone useful for testing upgrades, making changes, and even switching the roles of a sourcing PDB and its refreshable clone. This can be useful for resources and possible…
-
Open Order for PDBs- Containers and Pluggables
Read More: Open Order for PDBs- Containers and PluggablesNew in 23c, you can define an open order for the PDBs. This gives priority to mission-critical PDBs so that they are started first. The priority is for opening and upgrades. Priority values are lower to higher values, with the lower values being processed first. Values can be the same but will be processed in…
-
Create Common Users- Containers and Pluggables
Read More: Create Common Users- Containers and PluggablesThere are two types of users in a pluggable environment: local and common. A local user is nothing more than a regular user that is created in a PDB. The local type of user in a PDB behaves the same as a user in a non-CDB environment. There is nothing special about administering local users;…
Search
Popular Posts
-
Recovery Catalog Versions – RMAN Backups and Reporting
I recommend that you create a recovery catalog for each version of the target databases that you are backing up. Doing so will save you some headaches with compatibility issues and upgrades. I have found it easier to use a recovery catalog when the database version of the rman client is the same version used…
-
Registering a Target Database – RMAN Backups and Reporting
Now, you can register a target database with the recovery catalog. Log in to the target database server. Ensure that you can establish connectivity to the recovery catalog database. For instance, one approach is to populate the TNS_ADMIN/tnsnames.ora file with an entry that points to the remote database. On the target database server, register the…
-
Creating a Recovery Catalog – RMAN Backups and Reporting
When I use a recovery catalog, I prefer to have a dedicated database that is used only for the recovery catalog. This ensures that the recovery catalog is not affected by any maintenance or downtime required by another application (and vice versa). Listed next are the steps for creating a recovery catalog: 1. Create a…