सबसे पहले, मैं - एक डीबीए के रूप में - आपके और डीबीए के बीच सहयोग की कमी को देखकर खेद महसूस करता हूं। सफल होने के लिए हम सभी को सहयोग करने की आवश्यकता है। क्लॉब डेटा की लंबाई 4000 बाइट्स से कम हो सकती है।
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
आप कहाँ पाते हैं कि एक क्लोब की लंबाई 4000 से कम नहीं हो सकती है?