I'm setting up a DTS where I'm using a SQL query as my data source. In the query I'm doing a bit of data manipulation for example...
Im converting some dates using CONVERT()
Im using CAST() for a few of the fields.
I want to know if theres a similar method that I can use to strip carriage returns and replace them with a ", "
I've tried using replace(field,char(10),", "
AS Field, but I get an error!
Thank you so so much to whoever can help me with this one!
Im converting some dates using CONVERT()
Im using CAST() for a few of the fields.
I want to know if theres a similar method that I can use to strip carriage returns and replace them with a ", "
I've tried using replace(field,char(10),", "
Thank you so so much to whoever can help me with this one!