Hello,
SQLcl is great! Thanks a lot. Is there a way to stop showing the output of query results in an interactive session?
It seems like set autotrace traceonly
has this kind of functionality, but of course it also shows the plan and the statistics.
I am searching for this functionality:
SQL> select sysdate from dual;
SYSDATE
______________________
21.07.2025 09:27:59
SQL> set parameter to disable screen output
SQL> select sysdate from dual;
1 row selected. (optional, does not need to be diplayed)
SQL>
That would be really helpful.
Thanks
Jochen