Instance with ReadOnly and ReadWrite Access [message #604709] |
Fri, 03 January 2014 04:27 |
preet_kumar
Messages: 204 Registered: March 2007
|
Senior Member |
|
|
I am using Oracle 11g on Redhat and would like to create a replica of our production DB which will be used by our developers.The Replica will by synced using DG and located in our office premises.
Now as the replica instance is in Readonly state our developers needs a ReadWrite Schema with few tables which extracts information from the Replica.
In this case do i have to create a separate Instance for the Developer or can i use the same Instance with read-write Schema ?
|
|
|
|
|
|
|
Re: Instance with ReadOnly and ReadWrite Access [message #604726 is a reply to message #604720] |
Fri, 03 January 2014 08:24 |
gazzag
Messages: 1119 Registered: November 2010 Location: Bedwas, UK
|
Senior Member |
|
|
Naturally it depends on one's individual circumstances and/or requirements. However, one reason that springs to mind is that any maintenance done on the Oracle home may require both instances to be shut down.
HTH
-g
|
|
|
Re: Instance with ReadOnly and ReadWrite Access [message #604731 is a reply to message #604709] |
Fri, 03 January 2014 09:29 |
tim2boles
Messages: 38 Registered: August 2008 Location: Clarksburg, WV
|
Member |
|
|
There is a different approach that you might consider. Instead of having a physical standby database you might want to use a logical standby database (LGSTBD). A LGSTBD can still be maintained using Data Guard but it does not have the same restrictions as a physical standby database. You can have additional tables, different users, you can limit who can change information in the tables, different procedures. It is a very "cool" concept. And if anything ever happens to your primary database you can still activate your logical standby database as part of your disaster resovery setup.
From the Docuemntation....
http://docs.oracle.com/cd/B19306_01/server.102/b14239/log_apply.htm
Logical standby databases can be opened in read/write mode, but the target tables being maintained by the logical standby database are opened in read-only mode for reporting purposes (providing the database guard was set appropriately).
|
|
|
|
|