Focal Point
How to display Oracle BLOB data

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4671088331

August 08, 2005, 06:42 PM
<new2focus>
How to display Oracle BLOB data
Does anyone know how can I display the text data from an Oracle BLOB column onto a webfocus report directly without converting it and load it as a varchar2 column first?
August 08, 2005, 07:50 PM
CHERI
Using the pass-thru method try
select
DBMS_LOB.SUBSTR(C.CLOSEDESC, 500, 1) CLOSEDESC
from ...
where .....