Yes. Assume that your table is calle BLOB_TABLE and the BLOB column is called PHOTO.Originally posted by jamoji
Is there any way to know if you have data in a BLOB field?
I can't visualize the field with my SQL* Plus worksheet,but maybe I can guess just if I have data or not in it...
Thanks
Run:
If there is data, then the integer returned will be a big number.Code:select DBMS_LOB.GETLENGTH(PHOTO) from BLOB_TABLE;




Reply With Quote