Suppress output of variables substitution in sqlplus

user321068 picture user321068 · Mar 17, 2011 · Viewed 40.8k times · Source

I'd like to suppress the output of such lines as the following ones

old   9: AND FROMDAT <= TO_DATE('&duedate', 'YYYYMMDD')
new   9: AND FROMDAT <= TO_DATE('20091031', 'YYYYMMDD')
old  10: AND TODAT > TO_DATE('&duedate', 'YYYYMMDD')
new  10: AND TODAT > TO_DATE('20091031', 'YYYYMMDD')

How could I achieve this?

TERM OFF and FEEDBACK OFF is already set.

Answer

user321068 picture user321068 · Mar 17, 2011

SET VERIFY OFF is the answer.