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

I have recently upgraded to SQL2012 and i am using the management studio. One of my columns in the database has a Char(13) + Char(10) stored in it.

When i was using SQL Server 2008 this would copy and paste completely fine into Excel. But now copying pasting the same data create a new line/ carriage return on the data i have in excel.

Is there a setting i have missed in SQL2012 that will resolve this issue. I don't want to simply REPLACE(CHAR(13)+CHAR(10)) on every single database selection, As i would have to go from using SELECT * to defining each individual column.

share|improve this question
How do you copy and paste, just select the query results, ctrl+c, ctrl+V? – nutsch Nov 14 '12 at 21:27
I replicated the error with Management Studio 2008 (no new lines) and Management Studio 2012 (new lines), using query select top 10 char(10) + char(13) as [struff] from dbo.tbEntries – nutsch Nov 14 '12 at 21:40
2  
So you're saying you don't want the carriage return to show up in excel, despite it being in the data? It sounds like they simply fixed a bug from 2008 to 2012 if that's the case...if that's how your data is represented you need to manipulate it to the format you want instead – Derek Kromm Nov 15 '12 at 4:06
1  
There is an option under Tools > Options > Query Results > Results To Grid > "Quote strings containing list separators when saving .csv results". It's nonsense that this option is unchecked by default, in other words a complete violation of the CSV file format. – Triynko Apr 9 at 21:19
1  
LOL, even WORSE... with that option checked, instead of turning double quotes into pairs of double quotes like the CSV specification says, it converts double quotes into two single quotes. This is utterly, completely unacceptable. – Triynko Apr 9 at 21:23
show 6 more comments

3 Answers

My best guess is that this is not a bug, but a feature of Sql 2012. ;-) In other contexts, you'd be happy to retain your cr-lf's, like when copying a big chunk of text. It's just that it doesn't work well in your situation.

You could always strip them out in your select. This would make your query for as you intend in both versions:

select REPLACE(col, CHAR(13) + CHAR(10), ', ') from table
share|improve this answer
This problem is compounded by the fact that Excel's interpretation of the data on the clipboard depends on the last used separator character for a "text to columns" operation. The default is "\t" (tab), but the problem now seems to be that SSMS 2012 is actually ALTERING the data in the cells, converting "\r" to "\r\n" on the clipboard, which is very very bad. I know this because my Flash-based client stores line breaks as "\r" (carriage returns), and when I pasted this data from SSMS 2008 into Excel, it was not triggering a new row to be started in the middle of a cell like it is now. – Triynko Apr 9 at 21:15
I had to run select REPLACE(REPLACE(col, CHAR(13), '') CHAR(10), ' ') from table To make sure no single \n or \r messed up my Excel sheet – Robert Fricke Apr 29 at 11:30

You could try save the query results as excel, change the file extension to .txt. Open using excel (open with...) then use text to columns (formatting as text). Not sure if this will work for this situation, but works well for other formatting issues that excel auto-strips off.

share|improve this answer

you really could find out which rows / data has carriage returns and fix the source data.. instead of just put a bandaid on it.

UPDATE table Set Field = Replace(Replace(Field, CHAR(10), ' '), CHAR(13), ' ') WHERE Field like '%' + CHAR(10) + '%' or Field like '%' + CHAR(13) + '%'

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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