Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Truncate and insert vs drop and create

Truncate and insert vs drop and create

From: Philip Morrow <cracker_at_mymorrow.com>
Date: Wed, 16 Jan 2002 21:07:14 GMT
Message-ID: <6Yl18.11711$_w.1271779@typhoon.tampabay.rr.com>


Which is the better way to empty a table and reload data.

truncate, then use insert into x select ..... from y

or is it better to

drop table, then create table x as select ... from y???

I'm just wondering which is faster. I've tried both when putting about 24000 records into a table and I couldn't see much of a difference.

Thanks
Phil Received on Wed Jan 16 2002 - 15:07:14 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US