I'm getting the same results from
select length(column_name) from table
as
select dbms_lob.getlength(column_name) from table
However, the answers to this question seem to favor using dbms_log.getlength().
Is there any benefit to using dbms_lob.getlength()?
If it changes the answer, I know all of the blobs are .bmp images (never worked with blobs before).