在作oracle 11g的高级复制的时候,执行dbms_repcat.add_master_database时报出下面的错误信息。   
 ORA-23375:   feature   is   incompatible   with   database   version   at   OREP.COOLYOUNG.COM.CN   
  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   1   
    
我检查oracle的compatible值,两个数据库的都是11.1.0.0.0,而且是正版的,  以前有人说要给repadmin用户完全授权
SQL>create user repadmin identified by repadmin default tablespace users temporary tablespace temp; 
SQL>execute dbms_defer_sys.register_propagator('repadmin'); 
SQL>grant execute any procedure to repadmin; 
SQL>execute dbms_repcat_admin.grant_admin_any_repgroup('repadmin'); 
SQL>grant comment any table to repadmin; 
SQL>grant lock any table to repadmin; 
SQL>grant select any dictionary to repadmin; 
以上授权我都输入了,可还是抱错!!
  难道11g 该版本不支持高级复制吗? 
  请高手指点!!!