Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I'm having an issue with a project I just started working on.
I have a simple job with two subjobs doing the following :
tOracleInput1 -> storing data locally
OnSubjobOk
tOracleInput2 -> storing data locally
When I'm running it, I get the following error on the second tOracleInput : "Exception in component tOracleInput_2 (test)
java.sql.SQLException: ORA-28040: No matching authentication protocol".
tOracleInput1 is fetching data from an Oracle Database 12c and tOracleInput2 is fetching data from an Oracle Database 19c and that seems to be the problem.
If I run each subjob alone one by one, I got no error.
What I've tryied so far :
What I can't do :
I'm working on Talend Open Studio for Data Integration 7.3.1.
Any help would be really appreciated,
Thank you for your time,
TBenve
ORA-28040 error mean your oracle client jdbc driver is not compatible with the backend oracle db.
for your job, please setup DB Version to "Oracle 12-7" for tOracleInput_1(oracle 12 c)
and setup DB version to "Oracle 18 or above" for tOracleInput_2( oracle 19)
I tested, it's working fine in my side