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 -> Re: Truncate and insert vs drop and create

Re: Truncate and insert vs drop and create

From: Paul Brewer <paul_at_paul.brewers.org.uk>
Date: Wed, 16 Jan 2002 22:11:42 -0000
Message-ID: <3c45fc92$1_1@mk-nntp-1.news.uk.worldonline.com>


I agree; on performance probably not much difference.

I'd go for the truncate, on these grounds:

  1. You won't invalidate any objects upon which this new table may depend
  2. If structure of y has changed, you'll get an error, thus you will be made aware of any app changes which need to be made.
  3. Fewer changes in the metadata ("data dictionary" in the SYS schema)

If performace is an issue, you can of course use the unrecoverable clause in the create table, or the append hint in the insert after truncate...

By the way, thanks for not cross-posting!

Good luck...

Paul

"Philip Morrow" <cracker_at_mymorrow.com> wrote in message news:6Yl18.11711$_w.1271779_at_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 - 16:11:42 CST

Original text of this message

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