oracle 导入问题(imp)

oracle 导入问题(imp)

1.密码过期

[oracle @oracle ~]$ imp graph/graph@orcl file=/tmp/neo4j.dmp full=y;

解决方案:

使用plsql登陆,弹出窗口重新设置密码即可。

2.无导入权限

解决方案:

[oracle @oracle ~]$ sqlplus '/as sysdba'
SQL> grant dba to OAUser;//授予用户dba权限,用于导入dmp文件
Grant succeeded.

重新导入即可。

 3.表空间不足

alter tablespace 表空间名称 add datafile '新的数据文件地址' size 数据文件大小

原文地址:https://www.cnblogs.com/aongao/p/10601650.html