Mega Code Archive

 
Categories / Oracle PLSQL / System Tables Views
 

Viewing errors in the database

SQL> SQL> SQL> -- Viewing errors in the database. SQL> SELECT LINE, TYPE, NAME, TEXT from user_errors where rownum < 10;       LINE TYPE         NAME ---------- ------------ ------------------------------ TEXT --------------------------------------------------------------------------------          3 FUNCTION     EXITFUNC PLS-00103: Encountered the symbol "=" when expecting one of the following:    constant exception <an identifier>    <a double-quoted delimited-identifier> table LONG_ double ref    char time timestamp interval date binary national character    nchar The symbol "<an identifier>" was substituted for "=" to continue. SQL> SQL> SQL>