-- Description : Displays the source line and the associated error after compilation failure.
-- Comments : Essentially the same as SHOW ERRORS.
-- Call Syntax : @errors (source-name)
SELECT To_Char(a.line) || ' - ' || a.text error
FROM user_source a,
user_errors b
WHERE a.name = Upper('&&1')
AND a.name = b.name
AND a.type = b.type
AND a.line = b.line
ORDER BY a.name, a.line;
阅读(525) | 评论(0) | 转发(0) |