Oracle 数据库:我可以从 11g 源数据库执行数据泵 exp(而不是 expdp)以将 imp(而不是 impdp)插入到 10g 目标数据库中吗?
我可以从 11g db(源)执行数据泵 exp(不是 expdp),然后将数据泵(不是 impdp)到 10g db(目标)吗?这可能吗?
那么从 10g db(源)执行 exp 和 imp 到 11g db(目标)怎么样?
谢谢!
Can I do data pump exp (not expdp) from 11g db (source) then imp (not impdp) into the 10g db (target)? Is tha possible?
And how about from 10g db (source) to do exp and imp to 11g db(target)?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 Oracle 文档,您可以指定执行导出的作业会产生给定版本中的值。也就是说,您可以告诉执行导出的作业产生 10g 输出,以便目标数据库可以接受它。当然,还有一些不容忽视的注意事项。具体来说,请检查
DBMS_DATAPUMP
上OPEN
函数的参数。According to the Oracle docs you can specify that the job doing the export produce values in a given version. That is to say, you can tell the job doing the export to produce 10g output so that it can be accepted by the destination database. There are, of course, some caveats which must not be ignored. Specifically, check out the parameters for the
OPEN
function onDBMS_DATAPUMP
.您需要使用 10g exp 从 11g 导出,并使用 10g imp 导入到 10g。
10g imp 将拒绝与 11g exp 一起工作
You'd need to use a 10g exp to do the export from 11g and the 10g imp to import into 10g.
A 10g imp will refuse to work with an 11g exp