developer vs sqlplus
Hi all
in sqlplus
I create table :
create table pks (n varchar2(5));
insert into pks values ('ŽáŽá');
and error : ORA-12899: value too large for column "SYS"."PKS"."N" (actual: 8, maximum: 5)
I tried this scenerio again in nls UTF8 and also EE8MSWIN1250 and result is some
I recreate table
create table pks (n varchar2(5) CHAR);
and error is some
ORA-12899:
in developer
When I treid to insert this row in oracle developer insert is ok (exaple
Can I please tell me where is problem
db 11.2.0
Thank You
Brano
Edited by: branislav.dobrotka on Jun 16, 2010 7:50 AM