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
Did you like this post?
|
|
|
||
|
|
|
|
|
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |




comments
5 Responses to "Using SQLCMD to export SQL Server Data as Comma Seperated Values"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
Thanks Pollus. I will check it out!
Great If i want sqlcmd result in some sql table then ??
what to do ??
Pleasew help me...
If i want sqlcmd query result in MSSQL table then what to do??
Please help me...
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"
Post a Comment