ORA-12666: Dedicated server: outbound transport protocol different from inbound
Cause: The protocol specified for an externally-identified outbound connection from a dedicated server (database link) was not the same as that used for the inbound connection. It is not possible for Oracle Net to authenticate a proxy connection that uses a protocol that is different from that which was used for the connection to the dedicated server.
Action: Specify the same protocol in the Oracle Net connect descriptor for the outbound connection as that used for the inbound connection.
。
ORA-12666 是一个数据库编译错误,表明客户端尝试通过不同传输协议给数据库服务器发送信息,但服务器在允许远程应用程序接入时,仅设定一种协议,而不能支持混合使用。
1. 确定是否使用了正确的协议,如果没有,则应将客户端配置更改为与服务器上使用的协议相同。
2. 检查TNSNAMES.ORA文件,确保该文件包含正确的凭据,如果没有,则应为客户端的传输协议添加凭据。
3. 在客户端和服务器上,应该检查网络服务名,并确保它们是相同的。
4. 配置客户端使用相同的端口号,这样服务器就可以从指定的端口获取连接请求。
5. 配置防火墙,确保它可以允许客户端/服务器通信。
6. 最后,应检查服务器上的listener.ora文件,以确保它将监听任何有效的传输协议,这样客户端便可以尝试连接。