While connecting Oracle 18c using oracle 10g I am getting error like "ORA-28040: No matching authentication protocol exception". I can able to connect "SQL DEVELOPER" but not able to connect "Command prompt"
How to connect Oracle 18c server using oracle 10g server
2.8k Views Asked by Bala S At
3
There are 3 best solutions below
0

In 18c the default minimum version has been changed from 11 to 12 and SQLNET.ALLOWED_LOGON_VERSION
is deprecated and replaced with SQLNET.ALLOWED_LOGON_VERSION_SERVER
and SQLNET.ALLOWED_LOGON_VERSION_CLIENT
set
SQLNET.ALLOWED_LOGON_VERSION_SERVER=10
SQLNET.ALLOWED_LOGON_VERSION_CLIENT=10
in your sqlnet.ora and reload listener lsnrctl reload
1

It is not possible, see Client / Server Interoperability Support Matrix for Different Oracle Versions (Doc ID 207303.1)
Even if you set SQLNET.ALLOWED_LOGON_VERSION_...
the connection will most likely fail with another error.
Oracle documentation says:
See if it helps.