Dear All,
i am looking for command where i want to restore my primary database from netbackup.
please currect me if i am going wrong .
You will need to modify the restore script and add in the correct entries for following parameters:
ORACLE_HOME
ORACLE_SID
ORACLE_USER
TARGET_CONNECT_STR
The main section of the script should look like:
RUN {
ALLOCATE CHANNEL ch00 TYPE 'SBT_TAPE';
ALLOCATE CHANNEL ch01 TYPE 'SBT_TAPE';
SEND 'NB_ORA_SERV= <master server>, NB_ORA_CLIENT= <Oracle source client name>’;
duplicate target database for standby
RELEASE CHANNEL ch00;
RELEASE CHANNEL ch01;
}