I have a standby database. Can I apply archive log until specific time like recover database until specific time? Or I need to activate standby database and recover database using until specific time.
Nice one. No need to recover after activate standby database. Something like this would work?
startup nomount;
alter database mount standby database;
alter database recover automatic standby database until '2010-01-25:17:30:00';
alter database activate standby database;
Bookmarks