给你贴一篇看看啊 
上面的这个错误,通常表示我们在创建repadmin用户的时候缺少了几步授权的命令,按照如下步骤正确创建repadmin用户。 create user repadmin identified by repadmin default tablespace users temporary tablespace temp;execute dbms_defer_sys.register_propagator('repadmin');grant execute any procedure to repadmin;execute dbms_repcat_admin.grant_admin_any_repgroup('repadmin');execute dbms_repcat_admin.grant_admin_any_schema(username => '"REPADMIN"');grant comment any table to repadmin;grant lock any table to repadmin;grant select any dictionary to repadmin; 网上的一些其它文档通常缺少的是下面这两步: grant lock any table to repadmin;grant select any dictionary to repadmin;

解决方案 »

  1.   

    是这个问题,已经成功执行下去了!谢谢!但是有个小问题,就是复制后,两边的数据没有完全同步,没有同步之前各插入的两条记录都没有在两边体现,是不是只能同步执行完命令后的数据,而之前加入的数据就不再同步范围中了吧!?还有就是上面说可以在两边用repadmin用户下找到push的job_number,这个怎么才能看到啊!?