便利なoerr
コマンドから:
$ oerr ora 3113
03113, 00000, "end-of-file on communication channel"
// *Cause: The connection between Client and Server process was broken.
// *Action: There was a communication error that requires further investigation.
// First, check for network problems and review the SQL*Net setup.
// Also, look in the alert.log file for any errors. Finally, test to
// see whether the server process is dead and whether a trace file
// was generated at failure time.
したがって、最も可能性の高い原因は次のとおりです。
- 接続していたサーバー プロセスがクラッシュしました。
- ネットワークの問題により、接続が切断されました。
- あなたが接続していたサーバーのプロセスが誰かによって手動で強制終了されました。
接続していたサーバー プロセスがクラッシュすると、ORA-07445 がスローされました。このエラーは、ORA-00600 とともに、比較的有名な Oracle エラーです。これらは機能的に未処理の例外であり、ORA-00600 は Oracle コードの未処理の例外ですが、ORA-07445 は OS からの致命的な信号です。 Oracle プロセスを強制終了しました。
Oracle のサポート サイト ( http://metalink.oracle.com ) には、これらのエラーのオンライン トラブルシューティング ツールがあります。ドキュメント 600.1 を Metalink 内で検索し、ログ ファイルから適切な情報を入力すると、役立つトラブルシューティング情報が得られる場合があります。