2

这是这个问题的延续。

我的问题:我正在寻找一个像SQLERRM这样的函数,它将为我提供所有 Oracle 错误代码的描述。

这个网站,我找到了这个 oracle 错误类型列表:

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是任何错误类型,例如oraamd等等,并且error是代码。但是您需要确保您拥有对所有已安装目录的访问权限。

是您需要的 PDF 格式。

于 2012-08-09T23:49:14.820 回答