Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How do I find the un-printable letters?
On 7 ago, 15:27, emdproduct..._at_hotmail.com wrote:
> Dear group,
>
> I loaded data from a file coming from other source, in sqlplus, some
> of the data appear as space, but they are NOT. And it will cause our
> application which uses xml to fail.
>
> How can I find those ghost bytes and convert them into space?
>
> Thanks for your help.
Find out all the nonprintable characters, build a string with them, and use the TRANSLATE function
update table_one
set bad_data_column= translate(bad_data_column, 'éóú', ' ');
Received on Tue Aug 07 2007 - 14:45:15 CDT
![]() |
![]() |