Hi Everybody,
I'm using OLE DB Command component to perform UPDATE operation with OLE DB Source of ORACLE 11g database to SQL SERVER CE 3.5 database.
DDL of table in ORACLE 11g
CREATE TABLE ML_FINAL_ITEMS ( FINAL_ITEM_ID INTEGER NOT NULL, REMARKS VARCHAR2(3000), REPORT_DETAIL_ID NUMBER(38), DELETED_WAIVED CHAR(1), SEEN CHAR(1), REC_CHANGED INTEGER, CONSTRAINT FINLITEM_PK PRIMARY KEY (FINAL_ITEM_ID) )
DDL of table in SQL Server CE 3.5
CREATE TABLE ML_FINAL_ITEMS ( FINAL_ITEM_ID INT NOT NULL, REMARKS NVARCHAR(3000), REPORT_DETAIL_ID INT, DELETED_WAIVED CHAR(1), SEEN CHAR(1), REC_CHANGED INT, CONSTRAINT FINLITEM_PK PRIMARY KEY (FINAL_ITEM_ID) )
Source table contains 1200000+ records, I'm using lookup and handling records from error output.During execution of UPDATE I'm getting some error at 35680th record.
But that record is not getting redirected to the error output and my debug host getting stopped with message as
Awaiting for some suggest/solution for this issue.