在项目中连接数据库是出现以下问题
TrpasCon() error2:Listener refused the connection with the following error:
ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
The Connection descriptor used by the client was:
10.61.1.11:1521:snxxdb
看提示应该是SID错误,但在tnsnames中配置的SID确实是snxxdb
后来用
select instance_name,host_name from v$instance;
INSTANCE_NAME
----------------------------------------------------------------
snxxdb1
原来是集群数据库,把10.61.1.11:1521:snxxdb改成10.61.1.11:1521:snxxdb1就ok了
本文介绍了在连接Oracle数据库时遇到的SID问题及其解决方案。通过调整连接字符串中的SID名称,成功解决了连接失败的问题。
6848

被折叠的 条评论
为什么被折叠?



