vote up 0 vote down star

I have a .dmp file that I would like to import into Oracle 9i. How do I do that?

flag
Look at how other people ask questions & how they add tags to it? Also, take some time to read the documentation and put some effort before raising it out to other people. – shahkalpesh Mar 19 at 7:55

3 Answers

vote up 0 vote down

See here and here.

link|flag
vote up 3 vote down

Presuming you have a .dmp file created by oracle exp then

imp help=y

will be your friend. It will lead you to

imp file=<file>.dmp show=y

to see the contents of the dump and then something like

imp scott/tiger@example file=<file>.dmp fromuser=<source> touser=<dest>

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

link|flag
vote up 0 vote down

.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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.