Search notes:

ORA-00910: specified length too long for its datatype

The value of the init parameter max_string_size determines the maximal length of varchar2 that can be stored in tables.
If this values is STANDARD, the maximum length is 4000, otherwise 32767.
The following statment, if executed on a database where the value of max_string_size is set to STANDARD, will throw ORA-00910: specified length too long for its datatype:
create table tq84_max_string_size(
   txt varchar2(4001)
);

See also

ORA-01489: result of string concatenation is too long
Other Oracle error messages

Index