I need to export some data from PostgreSQL to Excel (quick customer wish), and the last time Excel had serious problems opening or importing my COPYd csv files (line endings, utf-8 encoding, etc), and it took me an hour at best.

Does someone know a quick, elegant solution that generates a real Excel file? Like a small shell script or the like?

I want this to be done either on my Linux box (Debian 5.0 Lenny) or on Windows (XP or higher).

link|improve this question

78% accept rate
It was ME taking a hour getting Excel to open and import my CSV file, because at first the encoding was wrong, then multiline strings broke the import, etc. – Daniel Apr 1 '11 at 5:31
feedback

1 Answer

up vote 6 down vote accepted

You could install the PostgreSQL ODBC driver on the Windows machine, and then connect Excel to the database like explained in this blog post (except using ODBC rather than OLEDB).

I haven't tested this. I'm not really sure if this makes it any easier than exporting CSV and fixing it (given what Excel is like).

EDIT (thanks @Tometzky): The best solution is to use the PostgreSQL ODBC driver to connect Microsoft Access to the database and from Access export to Excel.

link|improve this answer
+1 Good idea. I have the datasource installed already anyway, so this really should be the fastest way. – Daniel Apr 1 '11 at 6:31
2  
+1 But I'd recommend using Access for importing data from Postres and then export from Access to Excel. – Tometzky Apr 1 '11 at 10:46
+1 @Tometzky: This comment would be my accepted answer, because only access allowed me to select the tables from my ODBC driver. Excel could not find any table. I upvoted another answer of you in another question instead :) – Daniel Apr 1 '11 at 14:50
@Tometzky: Good idea, I'll edit that into the answer (sorry that I get rep that sort of belongs to you) – dancek Apr 1 '11 at 17:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.