Removing carriage returns in text column in oracle table, in SQL
Hi,
Would anyone know how to remove carriage returns within a text column in an Oracle table
using SQL. So far I have:
REPLACE(text_field,chr(13),' ')
but this is ignored.
(We are using db 10g (enterprise Edition Release 10.2.0.4.0) and SQL*Plus 10.2.0.1.0.
I would be very grateful for any help.
- Mark