Search notes:

SQLPATH - err

err.sql is a shortcut to select from all_errors.
column name format a30
column text format a90

select
   substr(name, 1, 30) name,
   type,
   line,
   position,
   substr(text, 1, 90) text
from
   all_errors;
Github repository Oracle-SQLPATH, path: /err.sql

See also

ALL_ERRORS etc.
Oracle: files for ORACLE_PATH / SQLPATH

Index