IMP-00019:row rejected due oracle error 1401
IMP-00003racle error 1401 encountered
ORA-1401:inserted value too large for column
Column1 0000232
Column2 cat
..................
.................
How is it possible that I get imp error if export is correct?
I truncate table with error and disable all constraints on this table
after I exported this table:
exp tom/tom@oradb file=tb.dmp tables=ER
after I imported this table:
imp system/manager@oradb file=tb.dmp fromuser=tom touser=sam ignore=y
but I get same previous error:
IMP-00019:row rejected due oracle error 1401
IMP-00003racle error 1401 encountered
ORA-1401:inserted value too large for column
..........
..........
..........
Tomaž "A common mistake that people make when trying to design something completely
foolproof is to underestimate the ingenuity of complete fools" - Douglas Adams
Tomaž "A common mistake that people make when trying to design something completely
foolproof is to underestimate the ingenuity of complete fools" - Douglas Adams
Truncating the table will not change it's definition, and disabling constraints is also not necessary, the error relates to the fact that it is trying to insert data which is outsides the bounds of the coloumn.
eg.
If you have userA and userB both with a table CUSTOMER but userA has the NAME column defined as varchar2(20) and userB has the NAME column defined as varchar2(10). If the names contained in userA's table are greater than 10 characters in length if you try to import the table data into userB the import will fail with the error you are getting.
Either drop the tables in the user you importing into or update the table defintions to match the user you are exporting from.
HTH
Jim
Oracle Certified Professional "Build your reputation by helping other people build theirs."
"Sarcasm may be the lowest form of wit but its still funny"
You are going to have to either provide the parent tables with the necessary rows so that the constraints can be validated or use the tables with disabled/removed constraints.
Jim
Oracle Certified Professional "Build your reputation by helping other people build theirs."
"Sarcasm may be the lowest form of wit but its still funny"
Bookmarks