Well here's a first try that will work but I'm sure this can be made more elegant and efficient:
SELECT *FROM MyTableWHERE regexp_like(MyColumn, '[[:cntrl:]]')AND MyColumn NOT like '%' || chr(10) || '%';
Well here's a first try that will work but I'm sure this can be made more elegant and efficient:
SELECT *FROM MyTableWHERE regexp_like(MyColumn, '[[:cntrl:]]')AND MyColumn NOT like '%' || chr(10) || '%';