如何查找可能由连接错误导致的 Oracle 错误代码?
我想处理网络/数据库连接中断时抛出的 OracleException,在哪里可以找到可能收到的错误代码?
我想既然我们正在讨论连接中断,那么从技术上讲,这些都是 TNS 错误,例如 ORA-12560“TNS:协议适配器错误”。 但我注意到其他几个取决于连接丢失的确切位置,并且希望获得完整的列表。
I would like to handle an OracleException thrown when my network/database connection is interrupted, where can I find out what error codes I might can receive?
I guess since we are talking about a connection interruption these would be technically TNS errors such as ORA-12560 "TNS:protocol adapter error." But I have noticed a couple others depending on where exactly the connection is lost and would like to get a full list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 Oracle 数据库错误消息 11g 第 1 版 ( 11.1)。 以下是TNS 错误的搜索结果< /a>.
Take a look at Oracle Database Error Messages 11g Release 1 (11.1). And here are the search results for TNS errors.
这里有一个完整的列表:
http://ora-code.com
但请注意其中一些,例如“TNS:协议适配器错误” ,实际上可以意味着许多不同的事情。
There's a full list here:
http://ora-code.com
But note that some of them, like "TNS:protocol adapter error", can actually mean many different things.