当我们尝试将程序与 oracle 连接时出现错误
当我尝试使用此命令
sqlplus crbt/crbt@crbt_new
将我们的程序与oracle连接时,这里crbt是用户名,crbt_new是密码。
它给出了错误
SQL*Plus: Release 9.2.0.4.0 - Production on Tue Jan 4 10:32:42 2011
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
ERROR:ORA-12541: TNS:no listener
所以请告诉我哪里出了问题
when i try to connect our programme with oracle with this command
sqlplus crbt/crbt@crbt_new
here crbt is the username and crbt_new is the password.
it is giving error this
SQL*Plus: Release 9.2.0.4.0 - Production on Tue Jan 4 10:32:42 2011
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
ERROR:ORA-12541: TNS:no listener
So please tell me where this is wrong
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是这种情况的可能性:
1) 侦听器可能已关闭
2) 当数据库未启动时,出现“TNS:无侦听器”错误
3) 如果 TNS 条目不正确。
例如:crbt_new 数据库的 TNS 条目可能具有提到的端口号 1531,但实际上数据库将侦听端口 1521
Below are the possibilities for this:
1) Listener might be down
2) When database is not up, 'TNS: no listener' error appears
3) If the TNS entries are not correct.
Ex: The TNS entry of crbt_new database might have the port number mentioned as 1531, but in real the Database would be listening on port 1521