Reputation: 597036
I have an Oracle dump (.dmp) that I want to import into my local Oracle instance. But when I do a full import, it fails with
IMP-00033: Warning: Table not found in export file.
Some facts:
imp system/pass ignore=yes tables=(t1,t2,t3,..)
show=y
DDL is shown for all the tables on the listIMP-00009: abnormal end of export file
"IMP-00003: ORACLE error 1435 encountered",
"ORA-01435: user does not exist",
"ORA-01031: insufficient privileges".
These errors do not appear when I specify the table names.
How to do the import?
Upvotes: 3
Views: 2620
Reputation: 8395
If you got IMP-00009: abnormal end of export file
this probably means that the import file do not have the expected format, or worse that it is incomplete! (but in that last case you would not be able to import specifying table names).
Since the database versions are so different, you should make sure that your import script specifies the format of incoming data with version=10.1.0
in your imp
command
Upvotes: 1