/ Published in: SQL
An example of the Oracle SQLERRM function
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
BEGIN EXCEPTION WHEN OTHERS THEN dbms_output.put_line('An error was encountered: '||SQLCODE||' - '||SQLERRM); END;
URL: http://www.databasestar.com/oracle-sqlerrm-function/