Hi,
I have written a sql script which takes the rows from a table and writes it to
a .csv file.
The script is as follows:-
SET feedback off;
spool output.csv;
SET heading off;
SELECT username||','||profession FROM users;
spool off;
This works fine but output.csv contains a blank line at the top.
How can I get rid of that blank line?
Thanks in advance