Oracle   Home  

 

Oracle Database 9i, 10g, 11g

Oracle Data Warehouse & BI

Oracle Applications EBS 11i, R12

 Oracle Middleware

SQL & PL/SQL

UNIX/ Linux

   Home  >  Oracle Database Administration (DBA)  >  Backup & Recovery  >  RMAN Incomplete Recovery (in ARCHIVELOG mode)

 

Oracle Database 10g Administration (DBA): Backup and Recovery

RMAN Incomplete Recovery (in ARCHIVELOG mode)

 

Note: The article ( named RMAN Incomplete Recovery (in ARCHIVELOG mode) ) was taken from www.in-oracle.com.

 

- Using the TIME parameter:

run { 
      shutdown immediate;
      startup mount;
      set until time "to_date('May 17 2008 10:20:09 pm','Mon DD YYYY HH:MI:SS am')";
      restore database;
      recover database;
      alter database open resetlogs;
}

 

 

- Using the SCN parameter:

run { 
      shutdown immediate;
      startup mount;
      set until scn 3400; 
      restore database;
      recover database;
      alter database open resetlogs;
}

 

 

- Using the SEQUENCE parameter:

run { 
      shutdown immediate;
      startup mount;
      set until sequence 12903;
      restore database;
      recover database;
      alter database open resetlogs;
}

 

NOTE: The incomplete recovery requires the database to be opened using the RESETLOGS option.

 

 

Note: The article ( named RMAN Incomplete Recovery (in ARCHIVELOG mode) ) was taken from www.in-oracle.com.

 

 

 

Oracle Database 9i, 10g, 11g

Oracle Data Warehouse & BI Oracle Applications EBS 11i, R12  Oracle Middleware

SQL & PL/SQL

UNIX/ Linux

   Home  >  Oracle Database Administration (DBA)  >  Backup & Recovery  >  RMAN Incomplete Recovery (in ARCHIVELOG mode)

 

 

Different Romanian Links/ Linkuri romanesti diferite

  1. Conjugarea verbelor in engleza (Learn English language if you are Romanian)

  Doresti un proiect de arhitectura ieftin (pentru zonele Buzau, Bucuresti sau Prahova) ?

Disclaimer: The views expressed on this web site are my own and do not reflect the views of Oracle Corporation. You may use the information from this site only at your risk. Copyright (c) 2009-2011 Paul Catalin Tomoiu. All rights reserved.