Using SQLCMD to export SQL Server Data as Comma Seperated Values

I have doing a couple of posts on SQLCMD recently (here and here) and have received some interesting questions too. One of the questions that caught my attention was to export SQL Server Data as CSV’s using SQLCMD.

Here’s the query to so do:

sqlcmd -S Suprotim-PC -d Northwind -E -Q "SELECT CustomerID, CompanyName, ContactName from Customers" -o "D:\MyData.csv" -s","

This query extracts data from 3 columns from the Customers table of the Northwind database and saves it in D:\MyData.csv

After running the command, here’s the output received

image

5 comments:

  1. There's an easier way to export a CSV with BCP. Or you could use a script like this one ! http://www.pollusbrodeur.com/wiki/ow.asp?CSV.BAT

    ReplyDelete
  2. Great If i want sqlcmd result in some sql table then ??
    what to do ??
    Pleasew help me...

    ReplyDelete
  3. If i want sqlcmd query result in MSSQL table then what to do??
    Please help me...

    ReplyDelete
  4. If you need to push a query result in a MS SQL table, all you need to do is use either: SELECT...INTO or INSERT...FROM, depending if the destination table exists or not. Here's an example: SQLCMD -Q "SELECT * INTO TableResult FROM MyTable"

    ReplyDelete