我使用本教程将一个模式导出到某个目录。我已经创建了一个目录,并按如下方式授予了用户:
将目录foo创建为“/data”; 授予读取,写入目录foo到Scott;
当我试图导出一些模式时,这个方法是fine.Now的,如下所示:
EXPDP SCOTT7TIGER@mysip schemas=schema_to_be_exported directory=dbdir dumpfile=exp.dmp logfile=log.log
它向我打印以下错误:
ORA-31631: privileges are required
ORA-39109: unprivileged users my not poerate upon other users' schemas.发布于 2016-02-09 10:52:17
您需要EXP_FULL_DATABASE从其他模式导出,IMP_FULL_DATABASE需要导入到其他模式(这包括SCHEMA_REMAP)。
https://stackoverflow.com/questions/35290097
复制相似问题