vote up 0 vote down star

I need to import data from *.dmp file say mydump.dmp. What I'm doing is:

imp myuser/mypass file=mydump.dmp log=mylog.log

And I'm getting:

only a DBA can import a file exported by another DBA

I know the DBA credentianls to db but I want to import dump into 'myuser' schema. So how to do it?

flag

1 Answer

vote up 1 vote down check

imp system/xxx file=mydump.dmp log=mylog.log touser=destination_schema

You have to import as system, since it was exported as system

Regards

link|flag
Just a couple of comments - the user doesn't have to be SYSTEM, but can be any schema with SYSDBA privs. Also, you should probably specify the original owner of the objects that you exported with the "FROMUSER=" clause. – dpbradley Nov 3 at 14:11

Your Answer

Get an OpenID
or

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