Hi,
I am trying to replicate a table that is containing an image from SqlServer 2005 to Oracle12c but i am getting an error when the distribution agent tries to apply the initial snapshot: "ORA-00932: inconsistent datatypes: expected file got binary". I did the same test between sql server 2005 and oracle 11g and it worked.
The problem is only with tables that have images, if it is only text, it works. (afte i am recreating MSREPL7
CREATE TABLE SCHEMA.MSREPL7
(
PUBSRV VARCHAR2(128 BYTE),
PUBDB VARCHAR2(128 BYTE),
PUBLCN VARCHAR2(128 BYTE),
INDAGENT NUMBER(1),
SUBTYPE NUMBER(10),
DSTAGENT VARCHAR2(100 BYTE),
TIMECOL DATE,
DESCR VARCHAR2(255 BYTE),
XACTTS RAW(16),
UPDMODE NUMBER(3),
AGENTID RAW(16),
SUBGUID RAW(16),
SUBID RAW(16),
IMMSYNC NUMBER(1)
))