我写了以下命令:
create directory orcl_full as '/oradata3/datapump/full_export';
create user user1 identified by admin12;
grant read,write on directory orcl_full to user1;
grant exp_full_database to user1;
但是当我尝试使用expdp
命令导出数据时,它不起作用:
expdp user1@ri/admin12@ORCL directory=orcl_full dumpfile=orclfull.dmp logfile=full_export.log FULL=YES;
这是我得到的错误:
ORA-31626:作业不存在
ORA-31633:无法创建主表“user1.SYS_EXPORT_FULL_05”
ORA-06512:在“SYS.DBMS_SYS_ERROR”,第 95 行
ORA-06512:在“SYS.KUPV$FT”,第 1048 行
ORA-01950: 对表空间 'USERS' 没有权限
我被困在这里,有人可以帮助我。在教程中,此命令有效。