我能连通LinkerServer。之前的错误,是我输入的实例名不对导致的。
权限这里我看看好像也没问题嘛,怎么那么纠结?!

解决方案 »

  1.   

    数据库连接问题,登录部分写的不对,应该是tns名和用户名密码,并授权。
      

  2.   

    -- It is recommended that only the required grants be granted to this user.
    --
    -- The following 5 privileges are granted explicitly, but could be granted through a role.
    GRANT CREATE PUBLIC SYNONYM TO &&ReplLogin;
    GRANT DROP PUBLIC SYNONYM TO &&ReplLogin;
    GRANT CREATE SEQUENCE TO &&ReplLogin;
    GRANT CREATE PROCEDURE TO &&ReplLogin;
    GRANT CREATE SESSION TO &&ReplLogin;-- The following privileges must be granted explicitly to the replication user.
    GRANT CREATE TABLE TO &&ReplLogin;
    GRANT CREATE VIEW TO &&ReplLogin;-- The replication user login needs to be able to create a tracking trigger on any table that is
    -- to be published in a transactional publication. The CREATE ANY privilege is used to
    -- obtain the authorization to create these triggers.  To replicate a table, the table 
    -- owner must additionally explicitly grant select authorization on the table to the
    -- replication user.
    --
    -- NOTE: CREATE ANY TRIGGER is not required for snapshot publications.
    GRANT CREATE ANY TRIGGER TO &&ReplLogin;