1. SQL> alter database open read write;
    2. alter database open read write
    3. *
    4. ERROR at line 1:
    5. ORA-16003: standby database is restricted to read-only access
    6. SQL> shutdown immediate;
    7. ORA-01109: database not open
    8. Database dismounted.
    9. ORACLE instance shut down.
    10. SQL> startup nomount;
    11. ORACLE instance started.
    12. Total System Global Area 3221222464 bytes
    13. Fixed Size 8901696 bytes
    14. Variable Size 771751936 bytes
    15. Database Buffers 2432696320 bytes
    16. Redo Buffers 7872512 bytes
    17. SQL> alter database mount standby database;
    18. Database altered.
    19. SQL> alter database activate standby database;
    20. Database altered.
    21. SQL> shutdown immediate;
    22. ORA-01109: database not open
    23. Database dismounted.
    24. ORACLE instance shut down.
    25. SQL> startup open;
    26. ORACLE instance started.
    27. Total System Global Area 3221222464 bytes
    28. Fixed Size 8901696 bytes
    29. Variable Size 771751936 bytes
    30. Database Buffers 2432696320 bytes
    31. Redo Buffers 7872512 bytes
    32. Database mounted.
    33. Database opened.
    34. SQL> select open_mode from v$database;
    35. OPEN_MODE
    36. --------------------
    37. READ WRITE
    38. SQL>