Find answers to your technical questions and learn how to use our products
Search suggestions:
If you use an Oracle database, use this procedure to enable Oracle Recovery Manager (RMAN) to take a backup of the POM database.
After you take a backup, ensure that you take an incremental backup of the POM database.
Ensure that:
POM does not run any active imports.
The POM database is in the ARCHIVELOG mode.
ARCHIVELOG
You have the SYSDBA privileges such as sqlplus or sysdba.
Do the following:
Stop all the running campaigns on the POM server.
Log off all the agents.
Connect RMAN to the POM database.
You can use an application such as PuTTY.
shutdown immediate;
startup mount;
alter database archivelog;
alter database open;
archive log list;
ORACLE_SID;
set ORACLE_SID=pomdb
echo %ORACLE_SID%
RMAN rman target /
BACKUP DATABASE PLUS ARCHIVELOG
BACKUP INCREMENTAL LEVEL 0 DATABASE;
Previous Topic
Next Topic