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
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
ReplyDeleteThanks Pollus. I will check it out!
ReplyDeleteGreat If i want sqlcmd result in some sql table then ??
ReplyDeletewhat to do ??
Pleasew help me...
If i want sqlcmd query result in MSSQL table then what to do??
ReplyDeletePlease 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"
ReplyDelete