简体   繁体   中英

*.dmp file import in Oracle

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?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM