SSIS Package - remove enter
In a particular column the data entered in the database ( through UI using a multiline textbox) the unicode for enter key also gets saved. while retrieving the data using a ssis package the data gets split into different lines whereever the enter key is there.so how to remove the unicode for enter key or how to retrieve the data in a single line??
February 21st, 2013 12:21am

Please post a example what type of data you are getting from table and what you want in output... Thanks Sumit
Free Windows Admin Tool Kit Click here and download it now
February 21st, 2013 12:41am

Hi When you are selecting the column , replace the CHAR(10)+CHAR(13) charecters from the column while you are selecting or place (\n) charecter from the column with blank value. Regards Naveen
February 21st, 2013 2:50am

I guess you want to export the data to a flat file / csv and you see the enters in that file? http://bturnip.com/nerdalerts/archives/25 or replace "\n" by ""Please mark the post as answered if it answers your question | My SSIS Blog: http://microsoft-ssis.blogspot.com | Twitter
Free Windows Admin Tool Kit Click here and download it now
February 21st, 2013 7:29am

I guess you want to export the data to a flat file / csv and you see the enters in that file? http://bturnip.com/nerdalerts/archives/25 or replace "\n" by ""Please mark the post as answered if it answers your question | My SSIS Blog: http://microsoft-ssis.blogspot.com | Twitter
February 21st, 2013 3:26pm

thanks!! but i used the REPLACE(column_name,' ','') to remove the unicode for enter key in the data...its working!!!
Free Windows Admin Tool Kit Click here and download it now
February 27th, 2013 12:50am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics