Try this ..... char(10) - Line Feed / char(13) - CR
SET NOCOUNT ON
go
drop table #NEWLINE
go
create table #NEWLINE (Field1 int identity(1,1), Field2 varchar(30))
go
insert #NEWLINE select '1111
11111'
go
select * from #NEWLINE
go
update nl
set nl.Field2 = replace(nl.Field2,char(13), ' ')
FROM #NEWLINE nl
update nl
set nl.Field2 = replace(nl.Field2,char(10), ' ')
FROM #NEWLINE nl
go
select * from #NEWLINE