Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: How to find non printable characters in a column using regexp
This migh also help:
select value
from (select 'A' value from dual
union select 'AA' value from dual union select chr(1)||'B' value from dual union select 'AAA' value from dual)where
chr(11)||chr(12)||chr(14)||chr(15)||chr(16)||chr(17)||chr(18)||chr(19)||chr(20)||
chr(21)||chr(22)||chr(23)||chr(24)||chr(25)||chr(26)||chr(27)||chr(28)||chr(29)||chr(30)||chr(31),'A')) = length(value);
-- http://www.freelists.org/webpage/oracle-lReceived on Thu Apr 19 2007 - 21:19:31 CDT
![]() |
![]() |