|
Re: Single Master Replication [message #289738 is a reply to message #289736] |
Tue, 25 December 2007 23:37 |
vjeedigunta
Messages: 201 Registered: March 2005 Location: Hyderabad
|
Senior Member |
|
|
Why not ..possible in many ways .. if you want to setup replication using the materialized views concept . then create a public synonym for the object you want to replicate and then create the materialized view in the schema where you want the object to be replicated.
Ex:
create materialized view samplerep
refresh complete on demand
as
select col1, col2, col3 from A.table1;
-Sai Jeedigunta
|
|
|