Is there an ORA Utility or Update/Insert Trigger that I'm not aware of
that I can use? If not any suggestions or sample code.
Thanks
Mike Gruntz
mgr...@ix.netcom.com
You can use translate function to remove special characters:
SVRMGR> select 'a'||chr(10)||'b' from dual;
'A'
---
a
b
1 row selected.
SVRMGR> select translate('a'||chr(10)||'b',chr(10),' ') from dual;
TRA
---
a b
1 row selected.
Andrew Protasov
The translate function should do. Looks horrible, but ...
Try something like
SELECT TRANSLATE(note,
'x' || CHR(0) || CHR(1) || ... || CHR(31),
'x')
FROM your_table;
(the strange 'x' is required: if any of the arguments was empty, the
result would be empty)
Hope it helps.
Arnold Schommer