>>Oracle Error - ORA-01401: inserted value too large for colum
It is a very generic error.
At some point your 'operation' is trying to insert something into an oracle table. The inserted value is too big to fit it.
This is how the error is occuring
1* create table foo (name varchar2(4))
scott@9i > /
Table created.
scott@9i > insert into foo values ('Name');
1 row created.
scott@9i > insert into foo values ('AnotherName');
insert into foo values ('AnotherName')
*
ERROR at line 1:
ORA-01401: inserted value too large for column
>>when logging into my work oracle pages
I dont understand what you mean here.
May be you are using a different client / version and the OCI application is not very happy about it.