↧
Answer by Gary_W for Oracle: Find control characters except line feed
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) || '%';
View ArticleOracle: Find control characters except line feed
I'm trying to all rows where a column contains any control charters with the exception of the line feed character (hex value of A). I've tried the following, but this only returns results that have a...
View Article