Bozho
Bozho

Reputation: 597036

Cannot import Oracle dump: IMP-00033: Warning: Table not found in export file

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:

These errors do not appear when I specify the table names.

How to do the import?

Upvotes: 3

Views: 2620

Answers (1)

J. Chomel
J. Chomel

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

Related Questions