Use RMAN to create your standby database without a previous backup

This week, I have an 11g Data Guard course in Duesseldorf, Germany. This is one of my favorite courses – Data Guard is so cool! All you need is a configuration file for your standby DB and start it NOMOUNT. Then you invoke RMAN and let it do the dirty work:

RMAN> connect target sys/oracle@prima;

RMAN> connect auxiliary sys/oracle@physt;

RMAN> duplicate target database for standby from active database;

This command works without a previous backup of the primary database – an 11g New Feature. In 10g, you simply take an online backup of the primary and then you issue the command

RMAN> duplicate target database for standby;

You may find a more detailed explanation of the creation of a standby database here.

, ,

  1. #1 von ynixon am August 21, 2017 - 10:43

    in 12c you can also rolling forward a physical standby database using the RECOVER FROM SERVICE, see https://oracledba.blogspot.co.il/2015/10/rolling-forward-aphysical-standby.html

Kommentar verfassen

Trage deine Daten unten ein oder klicke ein Icon um dich einzuloggen:

WordPress.com-Logo

Du kommentierst mit Deinem WordPress.com-Konto. Abmelden /  Ändern )

Twitter-Bild

Du kommentierst mit Deinem Twitter-Konto. Abmelden /  Ändern )

Facebook-Foto

Du kommentierst mit Deinem Facebook-Konto. Abmelden /  Ändern )

Verbinde mit %s

Diese Seite verwendet Akismet, um Spam zu reduzieren. Erfahre, wie deine Kommentardaten verarbeitet werden..