Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a query that I am running in SQL Server Management Studio (connecting to a SQL Server 2005 database). I want to export the data in CSV format. Not wannabe CSV format, where you just stick a comma between each column, but "real" CSV format, where you put quotes around your strings. This way you can export data that has commas or quotes in it.

All the examples I see limit themselves to the wannabe format. I can't figure out where the option to quote strings is.

If SSMS is truly incapable of this basic feat, are there other tools that will do it easily? I don't want to have to write a C# program every time I need a data dump.

Thanks!

share|improve this question

3 Answers

My normal work-around is to build it into the query:

SELECT '"' + REPLACE(CAST(column AS VARCHAR(4000)), '"', '""') + '"' AS Header, ... FROM ...

You can build that into a user-defined function, to make it a little easier, but you have to build a separate function for each data type.

share|improve this answer
Might not be necessary but I find it easier to just '"' + REPLACE(CAST(column AS VARCHAR), '"', '""') + '"'. That way I'm not worrying about undercutting a field. – Rob Nov 23 '12 at 16:01

How do you feel about Export to CSV from SSMS via PowerShell? This post describes how to define an external tool in SSMS that sends the currently selected query to a PowerShell script which exports to a CSV.

share|improve this answer
powershell is cool. checking out link now. – Peter Recore May 26 '11 at 13:51
So far this looks like the best bang for my buck. I haven't even added it to the External tools menu in SSMS - I am just running it from the command line. – Peter Recore May 26 '11 at 15:09

I know of no way to do this with SSMS alone. I know TOAD (http://www.toadworld.com/) has a CSV option. Not sure if it is an escaped format. If SSIS is an option, you can convert to a format that escapes strings (true CSV), but that is not in SSMS.

If you have to write a C# program, I would consider querying the table and then running the query, as the metadata will clue which need the escape.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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