?? errors.sql
字號:
--* File Name : Errors.sql
--* Author : DR Timothy S Hall
--* Description : Displays the source line and the associated error after compilation failure.
--* Comments : Essentially the same as SHOW ERRORS.
--* Call Syntax : @Errors (source-name)
--* Last Modified: 15/07/2000
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;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -