Prerequisites on the sap side of the integration – HP A.06.11 User Manual

Page 221

Advertising
background image

4.

If you run backups in the RMAN mode, verify backup and restore directly to disk
using the Recovery Manager channel type disk.

If you use the Recovery Catalog:

Export ORACLE_HOME as described in

Step 1

on page 218 and start Recovery

Manager:

bin/rman target Target_Database_Login rcvcat

Recovery_Catalog_Login cmd_file=rman_script

If you do not use the Recovery Catalog:

Export ORACLE_HOME as described in

Step 1

on page 218 and start Recovery

Manager:

bin/rman target Target_Database_Login nocatalog

cmd_file=rman_script

An example of the rman_script is listed below:

run {
allocate channel ‘dev0’ type disk;
backup (tablespace tablespace_nameformat ‘

ORACLE_HOME/tmp/datafile_name’);
}

After a successful backup, try to restore the backed up tablespace by running
the following restore script:

run {
allocate channel ‘dev0’ type disk;
sql ‘alter tablespace tablespace_name offline immediate’;
restore tablespace tablespace_name;
recover tablespace tablespace_name;
sql ‘alter tablespace tablespace_name online’release
channel ‘dev0’;
}

If one of the above procedures fails, refer to the Oracle documentation to learn
how to execute backup and restore directly to disk using the Recovery Manager.

Prerequisites on the SAP side of the integration

The following verification steps must be performed in order to verify that SAP is
installed as required for the integration to work. These steps do not include Data
Protector components.

Integration guide for Oracle and SAP

221

Advertising