【发布时间】:2021-05-14 22:02:53
【问题描述】:
FORALL indx IN 1 .. l_tab.COUNT
update repair_part_bp_r5 bp
set is_deleted='Y'
where 1=1
and bp.repair_part_id = l_tab(indx)
and bp.batch_id=p_batch_id;
It is waiting on latch: redo writing as the update volume is 120011.
在更新过程中是否有助于将其分解成更小的块?
如果是,请帮忙提供代码示例?
还有什么想法吗?
【问题讨论】: