I have several hundred records in a table that appear to have been converted years ago from some previous database. I just happened to be doing some reporting on these old records and found that they have embedded in the "notes" column a chr(236)chr(10) so when i do a report that contains these records my report format is screwed up. I can select these records with:
select notes from mytable where notes like '%'||chr(236)||chr(10)||'%'
the question now is, how can i strip these chr(236) and chr(10) out of my notes column?
any suggestions would be appreciated..
select notes from mytable where notes like '%'||chr(236)||chr(10)||'%'
the question now is, how can i strip these chr(236) and chr(10) out of my notes column?
any suggestions would be appreciated..