I want explanation for CLOB datafield
1.I created clobtable with the query
create table clobexample(id number,text CLOB);
2.I tried to insert very large text by the following query
insert into clobexample(1,' here i added very large text');
3.the error is
SP2-0232: Input too long. Must be less than 241 characters
why i am unable to insert very large text in CLOB field.
1.I created clobtable with the query
create table clobexample(id number,text CLOB);
2.I tried to insert very large text by the following query
insert into clobexample(1,' here i added very large text');
3.the error is
SP2-0232: Input too long. Must be less than 241 characters
why i am unable to insert very large text in CLOB field.
Comment