Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: value too large why oh why?
With variable length charactersets, a character could take n bytes.
The default semantics of a column length, e.g. VARCHAR2(50), is bytes.
See parameter NLS_LENGTH_SEMANTICS.
Maybe your column should be VARCHAR2(50 CHAR). Received on Fri Feb 16 2007 - 15:41:30 CST
![]() |
![]() |