Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> replication
I'm attempting to set up multimaster replication between two Oracle 10g
systems like so:
SQL> begin
2 dbms_repcat.add_master_database(
3 gname => 'handover_repgroup',
4 master => 'nct2.world',
5 use_existing_objects => true,
6 copy_rows => false,
7 propagation_mode => 'asynchronous');
8 end;
9 /
Unfortunately, I keep getting this error:
begin
*
ERROR at line 1:
ORA-23375: feature is incompatible with database version at NCT2.WORLD ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86 ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2159 ORA-06512: at "SYS.DBMS_REPCAT", line 146 ORA-06512: at line 2
---------------------------------------------------------------------
Any ideas? Received on Thu Sep 07 2006 - 12:32:42 CDT
![]() |
![]() |