Database – Oracle physical standby database received redo has not been applied

databaseoracle

I followed the steps in oracle documentation on creation of a physical standby database.

The link to the configuration steps,
http://download.oracle.com/docs/cd/B28359_01/server.111/b28294/create_ps.htm#i63561

When I perform "Step 4 Verfiy that received redo has been applied." my query result is not as expected, following is the result,

SQL> SELECT SEQUENCE#,APPLIED FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;

SEQUENCE# APP


    5 NO
    6 NO
    7 NO
    8 NO

4 rows selected.

Appreciate any advice on how to proceed, thanks.

Best Answer

try:

alter database recover managed standby database nodelay disconnect from session;

Related Topic