A friend of mine IM'd me asking if there was a way to supress the output of a query in SQL*Plus. I imagined what he was looking for was similar to what SET AUTOTRACE TRACEONLY does...without all that output.
Off to my local instance.
SYS@TESTING>SELECT * FROM dual;
DUM --- X
1 row selected.
How about (I swear, this was the first one I tried), SET TERMOUT OFF. That didn't work. (Now guessing) SET ECHO OFF? Nope.
To recap, I want to mimic the behavior of SET AUTOTRACE TRACEONLY where there is no result provided AND I don't want all that other stuff.
SYS@TESTING>SET AUTOTRACE TRACEONLY SYS@TESTING>/
1 row selected.
Elapsed: 00:00:00.03
Execution Plan ---------------------------------------------------------- Plan hash value: 272002086
Hmmm, I realized I'm used to running sqlplus scripts via Toad. When doing so, it auto 'runs as script'. So toadily my bad for not being clear about running as script a la @ vs interactive.
You're going to have people talking that we don't like each other, when in reality we really hate each other.