vote up 0 vote down star
1

Hello everyone,

I am using SQL Server 2008 Enterprise. I want to export the query result into csv file from SQL Server Management Studio. The issue is, the default csv file is comma (',') separated for each result column in each exported row, and I want to make it '\t' separated since comma exists in some of the result column values.

Any quick solutions?

thanks in advance, George

flag

42% accept rate

2 Answers

vote up 2 vote down check

If you really want the \t delimiter write a query like this

select 
  Cast(PersonCode as varchar(50)) + '\t'
  + Cast(PersonReference as varchar(50))    
from People

The casts are just incase you aren't working with varchar types, but you don't need them if you are. Run this query with results to text and just paste the result into notepad or similar.

link|flag
1  
You don't even need to paste. Using results to grid, just right click and save results as, using all files as the file type, to allow you to save as a txt file or whatever you want. – Mark Dickinson Aug 7 at 10:23
1  
@ Mark Dickinson: isn't that what I said in my answer?! :) – Mitch Wheat Aug 7 at 10:33
1  
@Mitch: I don't have that option in my save results as. I just get Export File (csv), or All files (.). Maybe I misunderstand the '\t' in the question, does that mean tab? Anyway my example means you could use War and Peace for a delimiter if you want so I still think its good :) – Mark Dickinson Aug 7 at 10:45
1  
@Mitch, I'm on 2005 in the office, that might explain the difference. – Mark Dickinson Aug 7 at 10:48
1  
@George2: Casting binary to a char type should be ok, it would loose any leading zeros if you cast to numeric type. – Mark Dickinson Aug 7 at 10:49
show 14 more comments
vote up 2 vote down

When you click "Save as" and you are prompted to enter a filename, drop down the box below the filename and select "Text (Tab delimited)"

link|flag
Thanks, it works in SQL Server 2008, and I have tried in SQL Server 2005 no such feature? – George2 Aug 7 at 10:36

Your Answer

Get an OpenID
or

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