November 23, 2023

RMAN Duplicating The Whole Database

                Duplicating the Whole Database 1. Use the DUPLICATE command to duplicate databases. To duplicate a database:     a. Ensure that the prerequisites for the selected duplication technique are met.    b. Complete the required planning tasks before we begin database duplication.    c. Prepare the auxiliary instance that is used when creating the …

RMAN Duplicating The Whole Database Read More »

RMAN Preparing The Auxiliary Instance

                Preparing the Auxiliary Instance RMAN uses an auxiliary instance to create the duplicate database. You must prepare the auxiliary instance before you begin the duplication. Depending on your duplication scenario, you need to perform either some or the tasks that are described in this section. Preparing the auxiliary instance includes the …

RMAN Preparing The Auxiliary Instance Read More »

RMAN Choosing A Duplication Technique

Choosing a Duplication Technique Your business requirements and the database environment determine which duplication technique is best for your situation. Consider the following questions: 1. Are you familiar with the prerequisites for each duplication technique?   Review the Prerequisites section of the DUPLICATE command description in Oracle Database Backup and Recovery Reference for a   …

RMAN Choosing A Duplication Technique Read More »

RMAN Troubleshooting

           Troubleshooting RMAN Run the following command to find if RMAN sessions exist in the database instance (format the output for readability): SELECT     p.SPID,     s.EVENT,     s.SECONDS_IN_WAIT AS SEC_WAIT,            sw.STATE,     s.CLIENT_INFOFROM       V$SESSION_WAIT sw,     V$SESSION s,     V$PROCESS pWHERE      sw.EVENT LIKE ‘?ckup%’AND        s.SID=sw.SIDAND        s.PADDR=p.ADDR; If …

RMAN Troubleshooting Read More »

Rman at work

Connecting to RMAN with “NOCATALOG” and “CATALOG” “rman” client application can be opened directly from command prompt c:\Oracle\bin>set ORACLE_SID=srinivas c:\Oracle\bin>echo %ORACLE_SID%srinivas c:\Oracle\bin>rman Recovery Manager: Release 19.0.0.0.0 – Production on Tue Dec 8 12:43:47 2020Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle and/or its affiliates.  All rights reserved. RMAN> connect target connected to target database: SRINIVAS (DBID=3234594012) …

Rman at work Read More »

RMAN Environment

RMAN Environment Recovery Manager (RMAN) is an Oracle Database client that performs backup and recovery tasks on your databases and automates administration of your backup strategies. It greatly simplifies backing up, restoring, and recovering database files. The RMAN environment consists of the utilities and databases that play a role in backing up your data. At …

RMAN Environment Read More »

Scroll to Top