I have a table with a CLOB column that I want to ensure is unique. If the column was VARCHAR2 I could use a unique index.
Plan B is a TRIGGER (BEFORE INSERT OR UPDATE ON <table> FOR EACH ROW) with WHERE dbms_lob.compare(en.text, :NEW.text) = 0; But that mutates
Oracle 12c Standard Edition