I have a Oracle table whose column is a CLOB datatype. I want to read the content of this table as a text.
I tried select dbms_lob.substr( sqltext, 4000, 1 ) from test
but this one selects only the first 4000 bytes. How to read the entire content ? there are more than 4000 characters in the sqltext column. Please advise.