oracle数据快速插入

--查看redo大小
select * from v$sysstat t where t.NAME = 'redo size';


--创建测试表
create table t as  select * from all_objects where 1=2;


--插入数据的方式
--普通
insert into t select * from all_objects; 
--快速
insert /*+append*/ into t select * from all_objects nologging;





http://www.eygle.com/faq/Nologging&append.htm

你可能感兴趣的:(oracle,sql)