Hi,
I'm working on Oracle 8i. I have created a table(Mapping_Currency) & trying to insert the values from another table Currency as
insert into mapping_currencies (currency,short_name)
select currency,alphanumericcode from currency.
I'm getting error:
ORA-01401: Inserted value to large for the Column.
I have changed Currency char(40) & Short_name varchar2(100).
Please let me know where I' wrong.
I'm working on Oracle 8i. I have created a table(Mapping_Currency) & trying to insert the values from another table Currency as
insert into mapping_currencies (currency,short_name)
select currency,alphanumericcode from currency.
I'm getting error:
ORA-01401: Inserted value to large for the Column.
I have changed Currency char(40) & Short_name varchar2(100).
Please let me know where I' wrong.