I added NCLOB
column to table:
ALTER TABLE table_name ADD(column_name NCLOB);
And I tried insert large text to this column which length is equal 22000.
But I get "Too long value" error.
What is the maximum length of NCLOB
? (I use Oracle 11g)
I added NCLOB
column to table:
ALTER TABLE table_name ADD(column_name NCLOB);
And I tried insert large text to this column which length is equal 22000.
But I get "Too long value" error.
What is the maximum length of NCLOB
? (I use Oracle 11g)