Hi all,
This my table structure,
Create table t_cust(cust_id varchar2(10),
national_id VARCHAR2(25));
I am inserting below record, but it throws error. I have checked national length is only 17 but still i am getting error.
insert into t_cust values('001000','26104-بطاقهشخصية');
Error:
ORA-12899: value too large for column "t_cust"."NATIONAL_ID" (actual: 26, maximum: 25)
ORA-06512: at line 1
Thanks,
Fame