从远程数据库更新本地数据库
我有一个用于开发和测试目的的本地数据库,以及在实时环境中的一个远程数据库。两者都在 Oracle 中。本地数据库包含相同的表结构,并且都是旧数据。我需要使用远程数据库中的数据更新本地数据库。 (我尝试了 exp/imp。但它显示了一个错误,例如 对象已存在
)。任何人都可以帮我找出可能是什么问题或者最好的方法是什么?
I have a local database used for development and testing purpose and one remote database in the live environment. Both are in Oracle. The local database contains the same table structure and all with old data. I need to update the local database with the data from the remote database. (I tried exp/imp. But it is showing an error like Object already exists
). Can anyone please help me to figure out what may be the problem or what is the best method to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要先删除本地表。如果我记得的话,exp/imp 在导入之前不会删除现有的表或数据。
You'll need to drop your local tables first. exp/imp does not remove existing tables or data before importing, if I recall.