I have an issue with a file that\'s created from data (in format of bytes) returned from the database. the problem is that there is a few newlines in the file. i wou
Using the CHR function to look for the ASCII value:
select * from your_table where instr(your_text_col, chr(10)) > 0;
If you want to search for carriage returns, that would be chr(13).