Prima di tutto, io - come dba - mi dispiace vedere la mancanza di cooperazione tra te e il dba. Tutti abbiamo bisogno di collaborare per avere successo. La lunghezza dei dati Clob può essere inferiore a 4000 byte.
create table z ( a number, b clob);
Table created.
insert into z values (1, 'boe');
1 row created.
exec dbms_stats.gather_table_stats (ownname => 'ronr', tabname => 'z');
PL/SQL procedure successfully completed.
select owner, avg_row_len from dba_tables where table_name = 'Z'
SQL> /
OWNER AVG_ROW_LEN
------------------------------ -----------
RONR 109
select length(b) from z;
LENGTH(B)
----------
3
Dove trovi che una lunghezza di clob non può essere inferiore a 4000?