Problem in 8i replication [message #62032] |
Mon, 21 June 2004 03:29 |
Khan
Messages: 8 Registered: February 2001
|
Junior Member |
|
|
I have two databases , with repadmin user on both databases and create a db link on both databases . I want to replicate scott.emp table . When I want to add master site (public db link for other databse then I receive the following error -
ORA-23375 - Feature is incompatible with database version at emp.us.oracle.com
ORA - 06512 at SYS.DBMS_SYS_ERROR line 86
ORA - 06512 at SYS.DBMS_REPCAT_MAS line 1902
ORA - 06512 at SYS.DBMS_REPCAT line 121
Can any body help
|
|
|
Re: Problem in 8i replication [message #62040 is a reply to message #62032] |
Mon, 21 June 2004 12:59 |
andrew again
Messages: 2577 Registered: March 2000
|
Senior Member |
|
|
Check your compatibility setting in your init or spfile.
-- db version
select * from v$version;
-- compatibility
select name, value, isdefault, ismodified from v$parameter
where name = 'compatible';
|
|
|