拆分大事务
- 一、批量插入更新
- 二、拆分事务
之前文章MYSQL批量插入更新如何拆分大事务?说明了Mysql如何拆分,本篇文章探讨Oracle或OceanBase批量插入更新拆分大事务的问题
一、批量插入更新
- oracle批量插入更新可使用merge语法
eg:
merge test ausing test_tmp bon (a.id = b.id)when matched then
之前文章MYSQL批量插入更新如何拆分大事务?说明了Mysql如何拆分,本篇文章探讨Oracle或OceanBase批量插入更新拆分大事务的问题
eg:
merge test ausing test_tmp bon (a.id = b.id)when matched then