oracle上亿表海量数据进行大批量数据删除有什么好的解决方案

如题所述

那么你就
while(true){
List ids = select id from table where a='xx' limit 500;
if(ids.isempty()){
break;
}
delete from table where id in (ids);
温馨提示:答案为网友推荐,仅供参考
相似回答