|
| Total Answers and Comments: 4 |
Last Update: September 02, 2009 Asked by: narsinghv |
|
| | |
|
Submitted by: omelkoz Standby can be of two types, physical standby and logical standby.
Physical standby database is exactly the same in structure as primary database. When it is in read-only mode, SQL queries can be run on it. The other mode is redo-apply mode and database is not accessible for queries at that time.
Logical standby database may have different structure from primary database. When it is in read-only mode, SQL statements generated from redo are applied and queries may be run concurrently. When in read-write mode, one can modify data in tables created in addition to primary schema. But this setting may be over written by specifying additional security options.
Above answer was rated as good by the following members: aravindhreturns | Go To Top
|