Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a SQL column (memo field) which contains carriage returns. How can I preserve the carriage returns in my Excel file output throigh tMap ?
Example :
Input :
TEXT LINE 1
TEXT LINE 2
Should output to
TEXT LINE 1\n TEXT LINE 2\n
How do I make sure code checks for each available carriage return, so it doesn't stop on line 1 ?
eplace (CONVERT(VARCHAR(MAX), dbo.TABLE.COLUMN_NAME) , CHAR(10), '\\n') AS COLUMN_NAME_CLEAN