2

これは、この質問の続きです。

私の質問: SQLERRMのような関数を探しています。これにより、すべての Oracle エラー コードの説明が得られます。

この Web サイトから、次のオラクル エラー タイプのリストを見つけました。

AMD, AUD, CLS, DBV, DGM, DRG, EXP, IMG, IMP, KUP, LCD, LFI, LPX, LRM,
LSX, NCR, NID, NMP, NNC, NNF, NNL, NNO, NPL, NZE, O2F, O2I, O2U, OCI,
ORA-CODE, PCB, PCC, PLS, PLW, PRO, QSM, RMA, SQL, TNS, UDE, UDI, VID

私は何かを誤解していますか、それとも可能ですか?

4

1 に答える 1

1

何かのようなもの

SQL> !oerr ora 04043
04043, 00000, “object %s does not exist”
// *Cause: An object name was specified that was not recognized by the system.
// There are several possible causes:
// – An invalid name for a table, view, sequence, procedure, function,
// package, or package body was entered. Since the system could not
// recognize the invalid name, it responded with the message that the
// named object does not exist.
// – An attempt was made to rename an index or a cluster, or some
// other object that cannot be renamed.
// *Action: Check the spelling of the named object and rerun the code. (Valid
// names of tables, views, functions, etc. can be listed by querying
// the data dictionary.)

これは、Oracle のエラー検索ユーティリティです。

Usage: oerr facility error

facilityなどoraのエラー タイプのいずれかで、コードです。ただし、インストールされたすべてのディレクトリへのアクセス権限があることを確認する必要があります。amderror

これは、PDF形式で必要なものです。

于 2012-08-09T23:49:14.820 に答える