Hello @Erkus, John G ,
Thanks for the question and using MS Q&A platform.
You may get this error if the datetime column in your oracle view has some dates with negative year in BC like e.g. -0107-12-04. You need to find those records and exclude it while loading the data as ADF does not supports that. Something like below in your WHERE clause could help to identify those rows in your view - WHERE TO_NUMBER(TO_CHAR (<Column Name>, 'sYYYY')) <= 0
.
Please try using the setting "Skip incompatible rows" to filter out those records in the copy activity. (See screenshot below).