and we said... You can use dbms_lob.substr to extract the first 4,000 characters. This returns a varchar2. So you can do a distinct on this in SQL: create table t ( x clob ); declare tmp clob; begin dbms_lob.createtemporary(tmp, true); for i in 0
↧