using DBMS_LOB.COMPARE on clobs in a trigger to compare old vs new
if (dbms_lob.compare(:new.CLOBCOL,:old.CLOBCOL) != 0) then ...
The compare returns a null value. I think it is because the :old.CLOBCOL is not open, so it has no lob locator reference. How can I compare the old value to the new value?