Hi,
I ve stored in a column an entire file from the server.
Now the no of files are bout 1000..now the problem is each of thses files have been modified in an editor under windows.
So all thse files do have a carriage return at the end of each line.
Is these a simple possible way to replace this carriage return char with blank space when i rettive that column?
Thanx
Sam
Hi,
I will give a sample SQL statement that will find the carriage return char by using the equivalent chr(10).
SQL> select instr('dsflkjdfldsdsf
2 dfdsfdsfd',chr(10)) from dual;
from here you can identify the position of the carriage return character
which you can then use to substitute with the blank character using other function such as SUBSTR, etc.
Bookmarks