在表空间A下有表a,数据有30万条,现在想移动到归档表空间B下的b表中,有什么好办法,能速度快点
我现在只能多次根据创建时间采用  insert into B.b (select * 
from A.a where 创建时间 between ‘’ and '')
感觉非常耗时间,且非常麻烦,请教下,有没有更好更快捷的方法?