ORA-29271: not connected ORACLE 报错 故障修复 远程处理
文档解释
ORA-29271: not connected
Cause: The network connection was not made while the network operation was attempted.
Action: Retry the network operation after the network connection is made successfully.
ORA-29271:错误是指当用户试图连接到Oracle数据库服务器时出现的错误,而实际上,没有任何连接。
官方解释
常见案例
一般处理方法及步骤
1.使用您的Oracle用户名和密码登录 Oracle 数据库。运行以下命令:CONNECT [username]/[password]
2.如果您使用的是 Oracle Express,您将需要指定数据库的服务器名称:CONNECT [username]/[password]@[servername]
3.如果您需要连接到特定的模式,请使用以下命令:CONNECT [username]/[password]@[servername] AS SYSDBA
4.如果要连接到 Oracle 加密文件,请在命令后添加以下内容:CONNECT [username]/[password]@[servername] AS SYSDBA USING ‘[localfile]’
5.可以在任何时候断开与 Oracle 的连接,而且也可以重新连接:EXIT 或 CONNECT [username]/[password]