Query user_errors table : user_errors « System Tables Data Dictionary « Oracle PL/SQL Tutorial






SQL>
SQL> COLUMN    name FORMAT a22
SQL> COLUMN    line FORMAT 9999
SQL> COLUMN    text FORMAT a30 word_wrapped
SQL> SELECT    name, type, line, text
  2  FROM      user_errors
  3  where     rownum < 2
  4  ORDER BY  name, type, sequence;

NAME                   TYPE          LINE TEXT
---------------------- ------------ ----- ------------------------------
WAIT                   PROCEDURE        3 PL/SQL: Statement ignored

SQL>
SQL>








30.80.user_errors
30.80.1.Viewing Errors in a Database
30.80.2.Query user_errors table
30.80.3.Get detailed error message from user_errors