insert into tableA
select * from tableB
这个语句如果有几百万的数据,数据库会崩溃?
数据库文本数据加图片数据有20G
alter table txx nologging;
insert /* +append */ into
写个循环,分批处理,处理1万条,提交一次。计数变量,到1万就提交,再绑定变量
加上一张中间控制日志表
操作每循环一次写一条
这样出错了好找到出错的原因和条数
操作每循环一次写一条
这样出错了好找到出错的原因和条数