Oracle 视图 DBA_APP_ERRORS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图 DBA_APP_ERRORS 是一个用户可视的数据字典视图,可以显示存储在数据库中关于应用程序错误的信息。它可以确定特定的应用程序错误,并发现由Oracle错误导致的性能问题。
使用方法:
1.连接数据库:
使用SQL Plus登录DBA账户。
2.查询视图:
使用以下SQL查询语句查询DBA_APP_ERRORS视图:
SELECT * FROM dba_app_errors;
3.处理结果:
从返回的结果中,您可以查看应用程序错误的详细信息,并通过从ERROR_GROUPS、ERROR_NAMES列查找某特定的错误进行故障排查和定位。
官方英文解释
DBA_APP_ERRORS
displays errors raised when an application PDB synchronizes with an application in the application root.
This view displays errors raised during the last synchronization for each application.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Name of the application whose statement was captured |
|
|
|
Application statement |
|
|
|
Error number for the statement |
|
|
|
Error message for the statement |
|
|
|
|
Sync time for the statement |
|
|
|
Indicates whether the error is a system-ignorable error ( |
|
|
|
Indicates whether the error is a user-ignorable error ( |