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 do the following:
Recover the backup file of the POM database.
Restore the backup file on a POM server.
Ensure that you have SYSDBA user privileges.
sqlplus / as sysdba
shutdown abort;
oradata\pomdb
rman target /
startup nomount;
restore controlfile from ‘control_file_name’;
alter database mount;
restore database;
recover database;
alter database open resetlogs;
Previous Topic
Next Topic