Oracle sql statement should not be displayed when errors out
Oracle sql statement should not be displayed when errors out.
select abc from dual;
select abc from dual
*
ERROR at line 1:
ORA-00904: "ABC": invalid identifier
I do not want below to be displayed when errors out, just ORA- error should be displayed.
select abc from dual
*
I tried verify off, echo off, termout off , autop off head off. how can we restrict oracle sql display when it errors out.