Using Oracle’s srvctl to Complete a RAC Flashback
A flashback restore point is handy for deployments of new code and testing.
Remember: You cannot properly shutdown a RAC database using sqlplus command. Use srvctl commands instead.
Flashback to Restore Point (RAC)
- >$ srvctl stop database -d myDB -o immediate
- >$ srvctl start instance -d myDB -i myDB1 -o mount
- SQL> flashback database to restore point <name of restore point>;
- SQL> alter database open resetlogs;
- >$ srvctl start instance –d myDB –i myDB2
- SQL> select open_mode from v$database;