SQLPLUS : How to generate a txt file supressing the command
791045Oct 21 2010 — edited Oct 21 2010I'm generating a text file using these commands in sqlplus :
Column chave_acesso format a46
Column dt_alt format a10
set pagesize 100
spool arquivo.txt
select chave_acesso, dt_alt from tab
Everything is perfect, except for 1 little detail.
The command "select chave_acesso, dt_alt from tab" appears in the txt file...
Is there a way of eliminating it ?
Eduardo