I have a .dmp file that I would like to import into Oracle 9i. How do I do that?
|
|
|||
|
|
|
Presuming you have a .dmp file created by oracle exp then
will be your friend. It will lead you to
to see the contents of the dump and then something like
to import from one user to another. Be prepared for a long haul though if it is a complicated schema as you will need to precreate all referenced schema users, and tablespaces to make the imp work correctly |
||
|
|
|
|
.dmp files are dumps of oracle databases created with the "exp" command. You can import them using the "imp" command. If you have an oracle client intalled on your machine, you can executed the command imp help=y to find out how it works. What will definitely help is knowing from wich schema the data was exported and what the oracle version was. |
||
|
|
