So here is another post I will keep just for my own reference.
Whenever I need to perform an incomplete recovery of the database, I usually use the SET UNTIL TIME
to specify the time for an incomplete recovery. Sadly, when NLS_LANG
is not set properly, the time format that needs to be used is not something I can remember.
So here is an example for using SET UNTIL TIME
with a sane time format:
run {
set until time "to_date('22-APR-2015 13:30:00','DD-MON-YYYY HH24:MI:SS')";
restore database;
recover database;
alter database open resetlogs;
}
You can find more examples in the Oracle documentation.
While upgrading an environment to Oracle 12c, one thing that needs to be done is to upgrade the RMAN catalog. One change introduced by Oracle is that there are new features used in the version 12 RMAN catalog. So if you try to upgrade an RMAN catalog running on Oracle Standard Edition, you will encounter the following error:
RMAN> upgrade catalog;
error creating create_deleted_object_seq
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-06004: ORACLE error from recovery catalog database: ORA-00439: feature not enabled: Partitioning
Mike Dietrich from the Oracle Upgrade blog has written an excellent article concerning this issue. Most specifically, MOS Note 1927265.1 notes implicitly that Enterprise Edition is a requirement:
Read the rest of this entry