Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: SQLPLUS format question
Johan,
The issue is that the TERMOUT command does not turn off output from interactive commands:
"To spool output generated by commands in a script without displaying the
output
on the screen, use SET TERMOUT OFF. SET TERMOUT OFF does not affect output
from commands that run interactively"
Thus the problem is that you need to put your entire SQLPLUS command script in a file and then run the file. So when you run the following file:
set ECHO OFF
set TERMOUT OFF
set FEEDBACK OFF
set VERIFY OFF
set PAGESIZE 0
set LINESIZE 80
set HEADING OFF
SPOOL c:\output.sql
select 'SELECT * FROM DUAL;' from dual
/
spool off
set echo on
set termout on
start c:\output.sql
You get this output:
Connected to:
Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> start c:\test.sql
SQL> SELECT * FROM DUAL;
X
SQL> SQL> start c:\test.sql SQL> set ECHO OFF SQL> start c:\output.sql SQL> SELECT * FROM DUAL;
-- Rumpi Gravenstein -- http://www.freelists.org/webpage/oracle-lReceived on Mon Aug 14 2006 - 15:07:19 CDT
![]() |
![]() |