I am using Oracle SQL Developer Tool, I have a table which has blob data type and we are storing XML in the blob object. I am not able to see the data stored in blob object either in text format or image format using oracle sql developer 4.0.3.16 version.
I tried to use the queries:
SET MARKUP HTML ON SPOOL ON;
SPOOL report.html;
select substr(clob_columnName , 1, 32767) from tableName...
But the output of the query is :
ORA-00932: inconsistent datatypes: expected CHAR got BLOB.
Please help me to view the blob data somehow