Oracle 导入/导出

exp pfdb/pfdb owner=pfdb file=temp.dmp log=temp.log

imp scott/tiger file=1.dmp fromuser=pfdb touser=scott ignore=y log=1.log

导入语句fromuser=user1 touser=user1和 full=y 不可共存。
要么是imp user/password file= user2.dmp fromuser=user1 touser=user1 ignore=y

要么是imp user/password file= user2.dmp  full=y ignore=y  

scott用户要有导入权限:

以用户system的身份登录数据库。

SQL> CONNECT system
Enter password:
Connected.

把IMP_FULL_DATABASE权限授予用户test2。

SQL> GRANT IMP_FULL_DATABASE to test2;
GRANT succeeded.

用户test2再次执行导入。

$imp test2/test2 file=EMPTY.dmp ignore=yes


你可能感兴趣的:(Oracle 导入/导出)