Creating a user in Oracle Active Data Guard

914 Views Asked by At

Our database uses Active Data Guard.

If I create a user in primary database, will that be automatically created in DR database ?

2

There are 2 best solutions below

0
On

the DR is maintained by applying all of the redo that is generated on the primary. Thus all activity on the primary should be replicated on the DR. It wouldn't make much sense if the DR were not kept as a mirror copy of the primary, would it?

0
On

The answer is: Yes, the user you created in the PD will be created in the ADG.

An oracle ADG is a physical standby which enables read-only access while Redo Apply is active.

There are three types of standby database in Oracle.

  1. Physical standby - Apply changes through Redo (actually it's block-level-copy)
  2. Logically standby - Apply changes through SQL statements (exacted automatically by LogMiner).
  3. Snapshot standby - Receive and archive, not apply.

An Active Data Guard is a physical standby.