Browsing index pages (2 articles)
↧
Oracle: 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 ArticleAnswer 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 Article
Browsing index pages (2 articles)