Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

developer vs sqlplus

branislav.dobrotkaJun 16 2010 — edited Jun 16 2010
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 14 2010
Added on Jun 16 2010
2 comments
1,067 views