将数据从单个文件导入到多个 Oracle 表中
有没有一种方法可以将数据从单个文件导入到多个 Oracle 表中,同时保持引用完整性?
Is there a method to import data from a single file into multiple Oracle tables while maintaining the referential integrity?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
没有更多细节,我只想说您应该查看外部表以将数据从文件获取到数据库中,然后从外部表中进行选择并使用“INSERT ALL”功能插入到多个表中,从单一输入。
希望有帮助。
Yes.
Without a lot more detail, I'll just say that you should look to external table to get the data from the file into the database, then select from the external table and use the 'INSERT ALL' feature to insert into multiple tables, from the single input.
Hope that helps.
有几个替代方案(不是详尽的列表):
There are couple alternatives (not an exhaustive list):