Oracle 视图 ALL_ERROR_TRANSLATIONS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图 ALL_ERROR_TRANSLATIONS 是 Oracle系统提供的一个系统视图,用于存储关于 Oracle错误编号与描述之间的映射配置。SNAPI编号是从 Oracle 11g开始使用的,以便在 Oracle中进行查找和存储错误信息
这个视图提供两个列:
1、ERROR_NUMBER:保存了错误的编号;
2、ERROR_NAME:保存了错误编号对应的中文翻译。
使用该视图,可以通过错误的编号,获取错误的中文描述信息。可以用如下方法进行使用
SELECT ERROR_NUMBER, ERROR_NAME FROM ALL_ERROR_TRANSLATION WHERE ERROR_NUMBER = ‘000000001’;
这样可以获取相应错误编号对应的中文描述信息。
官方英文解释
ALL_ERROR_TRANSLATIONS
describes all error translations accessible to the user.
Related Views
-
DBA_ERROR_TRANSLATIONS
describes all error translations in the database. -
USER_ERROR_TRANSLATIONS
describes all error translations owned by the user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the SQL translation profile |
|
|
|
Name of the SQL translation profile |
|
|
|
The Oracle error code |
|
|
The translated error code |
|
|
|
The translated SQLSTATE |
|
|
|
|
|
|
|
Time the translation was registered |
|
|
|
Comment on the translation |
See Also:
-
“DBA_ERROR_TRANSLATIONS”
-
“USER_ERROR_TRANSLATIONS”