3

我正在使用 Oracle 11,但在两个数据库之间移动表时遇到问题。我已经成功导出了一个datadumb,如下所示:

expdp.exe www/www@xe tables=TABLE1,TABLE2,TABLE3 directory=dmpdir dumpfile=tables.dmp

当我尝试:

impdp.exe www2/www2@xe tables=TABLE1,TABLE2,TABLE3 directory=dmpdir dumpfile=tables.dmp

结果我得到了以下异常:

ORA-39002: invalid operation
ORA-39166: Object WWW2.TABLE1 was not found.
ORA-39166: Object WWW2.TABLE2 was not found.
ORA-39166: Object WWW2.TABLE3 was not found.

如果我尝试:

impdp.exe www2/www2@xe remap_tables=WWW2:TABLE1,TABLE2,TABLE3 directory=dmpdir dumpfile=tables.dmp

我得到:

LRM-00101: unknown parameter name 'remap_tables'

在我的情况下,我无法使用数据库链接。导入和导出表时如何更改架构?我是否以某种方式误解了甲骨文?

4

2 回答 2

5

使用REMAP_SCHEMA=WWW:WWW2并删除该tables=子句。

impdp.exe www2/www2@xe REMAP_SCHEMA=WWW:WWW2 directory=dmpdir dumpfile=tables.dmp
于 2012-05-09T15:47:37.740 回答
2

我认为您需要REMAP_SCHEMA参数。REMAP_TABLE (注意拼写)参数用于更改表的名称,而不是它所属的模式。

于 2012-05-09T15:48:11.937 回答