Is there any SQL SELECT query that can be done in oracle to detect ascii characters such as LF, CR in fields? Basically any characters people have known to cause trouble in a oracle db environment in terms of breaking jobs/procedures.etc
I doubt this would work: – happy to use regex if possible
select * from table
where column like '%chr(13)%'
The regex used here is a form of
(a|b|c)which matches the string if it containsa OR b OR c