There are some entries in my table which have non printing characters. I tried to write a simple script to execute on Oracle DB-
select column from table where regexp_like(column,'([[:cntrl:]]+)');
But this even matched strings with multiple spaces . But spaces are OK.
What is the best query?