Using spool
on Oracle sqlplus correctly
sends the results of my queries to a file.
But I also see output on the screen.
Is it possible to see only the query without output on screen, and result on file? (This feature is the default on PostgreSQL psql client program).
Mat
10.3k4 gold badges44 silver badges40 bronze badges
asked Feb 24, 2016 at 23:44
1 Answer 1
You can use SQL> SET TERMOUT OFF
command to get the result.
Here are some useful links collected from comments:
answered Feb 25, 2016 at 4:12
lang-sql