Does anyone know a SQL statement that would remove all the \r\n (new line character) from a column in the database (if it exists)?
ThanksMaz.
Try something like
UPDATE MyTblSET MyColumn = replace(MyColumn, char(13) + char(10), '')
RegardsAlan