If you use a different language, such as Java, to read data, JDBC drivers provide ways to read CLob and Blob columns.
To use a direct SQL query on an SQL client to read such columns, it will not work out of the box, since clob and blob values ββin excess of 4000 bytes must be read using a stream. For this you need to write PL / SQL. Here is one useful link you can see
http://www.dba-oracle.com/t_read_blob.htm
Fazal source share