Oracle SQLERRM Function


/ Published in: SQL
Save to your folder(s)

An example of the Oracle SQLERRM function


Copy this code and paste it in your HTML
  1. BEGIN
  2.  
  3. EXCEPTION
  4. WHEN OTHERS THEN
  5. dbms_output.put_line('An error was encountered: '||SQLCODE||' - '||SQLERRM);
  6. END;

URL: http://www.databasestar.com/oracle-sqlerrm-function/

Report this snippet


Comments


You need to login to view comments.