Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们需要在数据库之间导入大量数据,涉及多个表。
交易的最佳策略是什么?我猜想打开一个会话,有一个大事务并在进程结束时提交它是一个坏主意。
在每张桌子之后提交会更好吗?如果一个特定的表对其他表有依赖关系,应该如何处理?
如果可能,您可以尝试在单独的事务中导入没有依赖关系的表,然后在另一个事务中导入具有依赖关系的表。
如果这是不可能的,我会推荐一笔大交易。