| | |
removing first blank line in csv file
Please support our Oracle advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
Thread Solved |
•
•
Join Date: Jul 2009
Posts: 33
Reputation:
Solved Threads: 4
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:-
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
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:-
Oracle Syntax (Toggle Plain Text)
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
Add to my reputation if you think I really helped you. :)
•
•
Join Date: Sep 2009
Posts: 2
Reputation:
Solved Threads: 2
You have to add command SET PAGESIZE 0 at the top script
Oracle Syntax (Toggle Plain Text)
SET PAGESIZE 0 -- <-- add this line SET FEEDBACK OFF SET HEADING OFF SPOOL OUTPUT.TXT; SELECT username||','||profession FROM users; SPOOL OFF;
![]() |
Similar Threads
- Delete Blank line(s) from a textbox? (VB.NET)
- please help:write to a text file but got a blank first line. (C++)
- Parsing a CSV File and inserting into a dictionary (Python)
- read second line or record of csv file (PHP)
- insert csv file into mysql through php (PHP)
- White space at the end of .csv file (Perl)
- How to parse in tricky .csv file content? (Python)
- How to read csv file contents in VB.Net (VB.NET)
Other Threads in the Oracle Forum
- Previous Thread: Multiple row insertion
- Next Thread: DISTINCT on One Column Only
| Thread Tools | Search this Thread |
2009predictions acquisition amazon.com bartz bernanke cia citrix cloudcomputing crm database dell economy editor enterprise enterprise2.0 enterprisesoftware federalreserve forbes hp ibm intellipedia internet larryellison layoffs linux loughridge mediawiki michaeljackson microsoft neverland nortel notebooks oil operatingsystem oracle palm rimm saas salesforce sap seagate socialcomputing sql sun sybase technologystocks virtualiron virtualization vmware wiki wikipedia xen yahoo zoho





