Tuesday, October 4, 2011

Steps to recreate a Physical Standby Controlfile .

Visit the Below Website to access unlimited exam questions for all IT vendors and Get Oracle Certifications for FREE
http://www.free-online-exams.com
Problem: Steps to recreate a Physical Standby Controlfile .

Symptoms:

Sometimes it is necessary to recreate the Physical Standby Controlfile for any Reason.
This Document shows Step-by-Step how to recreate the Physical Standby Controlfile.


Solution:



Follow these Steps if you have to recreate the Physical Standby Controlfile:

1. Stop Managed Recovery Process on the Standby Database (if still running):

SQL> alter database recover managed standby database cancel;

2. Shutdown the Standby Database:

SQL> shutdown immediate;

3. Connect to the Primary Database as SYS:

SQL> connect sys/@ as sysdba

4. Create a new Physical Standby Controlfile from the Primary:

SQL> alter database create standby controlfile as '';

5. Copy the new created Standby Controlfile to the Standby Database using OS-Tools (eg. cp or ftp) and replace the current Standby Controlfile with the new created one.

6. Mount the Standby Database with the new Standby Controlfile:

Oracle 8i and 9i (8.x - 9.x):

SQL> startup nomount
SQL> alter database mount standby database;

Oracle 10g and 11g (10.x - 11.x):

SQL> startup mount

7. If the File-Structure is different between Primary and Standby Database and db_file_name_convert/log_file_name_convert is not set, rename the File-Location(s) in the new Standby Controlfile:

SQL> alter database rename file '' to '';

8. Starting with 9i: If you don't have Standby RedoLogs proactively on the Primary and want them on the Standby Database or you had Standby RedoLogs with this Standby Database before, now add the Standby RedoLogs (again):

SQL> alter database add standby logfile group ('Filespecification(s)') size reuse;

Please see
Note 219344.1:Usage, Benefits and Limitations of Standby Redo Logs (SRL)
for further Details about Standby RedoLogs

9. Re-enable Flashback (if Flashback was enabled previously):

SQL>ALTER DATABASE FLASHBACK OFF;
SQL>ALTER DATABASE FLASHBACK ON;

10. Start Managed Recovery again:

SQL> alter database recover managed standby database disconnect [using current logfile];

References:

Note.459411.1 Steps to recreate a Physical Standby Controlfile .
NOTE:734862.1 - Step By Step Guide On How To Recreate Standby Control File When Datafiles Are On ASM And Using Oracle Managed Files



Get Oracle Certifications for all Exams
Free Online Exams.com

No comments: