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

I can quite easily dump data into a text file such as:

sqlcmd -S myServer -d myDB -E -Q "select col1, col2, col3 from SomeTable" 
     -o "MyData.txt"

However, I have looked at the help files for SQLCMD but have not seen an option specifically for CSV.

Is there a way to dump data from a table into a CSV text file using SQLCMD?

share|improve this question
Must this be via sqlcmd, or could you use another program such as the following: codeproject.com/KB/aspnet/ImportExportCSV.aspx – Bernhard Hofmann Jan 8 '09 at 19:06
It doesn't have to be but I wanted to know for certain whether or not sqlcmd could actually do this before diving into some other export utility. One thing to mention is that it does need to be scriptable. – Ray Vega Jan 8 '09 at 20:05

5 Answers

up vote 40 down vote accepted

You can run something like this:

sqlcmd -S MyServer -d myDB -E -Q "select col1, col2, col3 from SomeTable" 
       -o "MyData.csv" -h-1 -s"," -w 700
  • -h-1 removes column name headers from the result
  • -s"," sets the column seperator to ,
  • -w 700 sets the row width to 700 chars (this will need to be as wide as the longest row or it will wrap to the next line)
share|improve this answer
4  
The caveat with doing it this way is that your data may not contain any commas. – Sarel Botha Oct 30 '12 at 16:57
sqlcmd -S myServer -d myDB -E -o "MyData.txt" ^
    -Q "select bar from foo" ^
    -W -w 999 -s","

The last line contains CSV-specific options.

  • -W   remove trailing spaces from each individual field
  • -s","   sets the column seperator to the comma (,)
  • -w 999   sets the row width to 999 chars

scottm's answer is very close to what I use, but I find the -W to be a really nice addition: I needn't trim whitespace when I consume the CSV elsewhere.

Also see the MSDN sqlcmd reference. It puts the /? option's output to shame.

share|improve this answer
How do you get rid of the trailing: (535 rows affected) ??? – d-_-b Mar 31 '10 at 6:44
9  
@sims "set nocount on" in the beginning of the query/inputfile – d-_-b Mar 31 '10 at 7:54
2  
How can I remove underlining on the Headers? – gugulethun May 26 '10 at 9:06
@gugulethun : You can do a union in your query to put the column name on the first line. – Nordes Apr 20 '11 at 9:16
1  
+1 Super awesome! – Legend Jul 23 '11 at 6:52
show 1 more comment

Is this not bcp was meant for?

bcp "select col1, col2, col3 from database.schema.SomeTable" queryout  "c:\MyData.txt"  -c -t"," -r"\n" -S ServerName -T

do this from your command line

bcp /?

the syntax is as follows:

usage: bcp {dbtable | query} {in | out | queryout | format} datafile
  [-m maxerrors]            [-f formatfile]          [-e errfile]
  [-F firstrow]             [-L lastrow]             [-b batchsize]
  [-n native type]          [-c character type]      [-w wide character type]
  [-N keep non-text native] [-V file format version] [-q quoted identifier]
  [-C code page specifier]  [-t field terminator]    [-r row terminator]
  [-i inputfile]            [-o outfile]             [-a packetsize]
  [-S server name]          [-U username]            [-P password]
  [-T trusted connection]   [-v version]             [-R regional enable]
  [-k keep null values]     [-E keep identity values]
  [-h "load hints"]         [-x generate xml format file]
  [-d database name]
share|improve this answer
5  
+1: The question does ask for a solution using sqlcmd, but bcp is a much better tool for the job. – Iain Elder Aug 21 '11 at 9:59
1  
ServerName = YourcomputerName\SQLServerName, only then it executes otherwise error – Nick Oct 18 '11 at 12:40

A note for anyone looking to do this but also have the column headers, this is the solution that I used an a batch file:

sqlcmd -S servername -U username -P password -d database -Q "set nocount on; set ansi_warnings off; sql query here;" -o output.tmp -s "," -W
type output.tmp | findstr /V \-\,\- > output.csv
del output.tmp

This outputs the initial results (including the ----,---- separators between the headers and data) into a temp file, then removes that line by filtering it out through findstr. Note that it's not perfect since it's filtering out -,-—it won't work if there's only one column in the output, and it will also filter out legitimate lines that contain that string.

share|improve this answer
Use following filter instead: findstr /r /v ^\-[,\-]*$ > output.csv For some reason simle ^[,\-]*$ matches all lines. – Vladimir Korolev Sep 8 '11 at 15:27
1  
Always put a regex with ^ inside double quotes, or you get weird results, because ^ is an escape character for cmd.exe. Both regexes above don't work properly, as far as I can tell, but this does: findstr /r /v "^-[-,]*-.$" (the . before the $ seems to be needed when testing with echo, but might not for sqlcmd output) – JimG Mar 9 '12 at 7:01
There's also a problem with dates having 2 spaces between date and time instead of one. When you try to open the CSV in Excel, it show as 00:00.0. An easy way to resolve this would be to search and replace all " " with " " in-place using SED. The command to add to your script would be: SED -i "s/ / /g" output.csv. More about SED gnuwin32.sourceforge.net/packages/sed.htm – PollusB Jun 13 '12 at 16:04

I don't know it very well, but I doubt you can.

You can use a simple script to do that, though.

Try this: http://dev-notes.com/code.php?q=18

share|improve this answer
An explanation for the downvote would be nice. My answer is correct: you cannot do this with sqlcmd. I also offered an alternative way to accomplish the task. – Sarel Botha Jan 9 '12 at 19:30
3  
The downvote is because you clearly CAN do what OP is asking with sqlcmd. – Brian Driscoll Apr 27 '12 at 15:23

protected by Will Sep 17 '10 at 13:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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