본문 바로가기

Server Oriented/DB-Oracle

truncate table TableA 와 insert into TableA(...) select ... 보다는 drop table TableA 와 create table TableA as select ... 가 훨씬 빠라다는..


truncate table TableA
;

insert into TableA (col1, col2, ...)
select col1, col2, ...
;

상기 조합 보다는 아래 조합이 더 빠르다고 하네요..

drop table TableA
;

create table TableA
     as
select col1, col2, ...