Answers for "oracle error compilation line"

SQL
4

oracle error compilation line

SELECT to_char(a.LINE) || ' - ' || a.TEXT ERROR
FROM ALL_SOURCE a,
     ALL_ERRORS b
WHERE a.NAME = 'object_name'
  AND a.NAME = b.NAME
  AND a.TYPE = b.TYPE
  AND a.LINE = b.LINE
ORDER BY a.NAME, a.LINE;
Posted by: Guest on September-02-2021

Code answers related to "oracle error compilation line"

Code answers related to "SQL"

Browse Popular Code Answers by Language