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.
select top 10 char(10) + char(13) as [struff] from dbo.tbEntries– nutsch Nov 14 '12 at 21:40