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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Managing high volumes of data... how to...

Re: Managing high volumes of data... how to...

From: <ryan_gaffuri_at_comcast.net>
Date: Wed, 12 Jan 2005 19:39:08 +0000
Message-Id: <011220051939.5268.41E57CDC00012B30000014942205886014079D9A00000E09A1020E979D@comcast.net>


when you use snapshots or materialized views, oracle does a truncate and insert append. if you have indexes on those materialized views, they remain. it is much slower to do bulk inserts with indexes and constraints.

its faster to drop the indexes, refresh, and then add them in parallel(not the parallel clause, create them all at the same time with nologging). In these types of cases i prefer the flexibility of 'create table as no logging' over materialized views.

> All...
>
> We need to build web reports to display those data I
> mean volumes and some parameters, for some reports the
> type is as following:
>
> for a date:
> today_volume,
> volume_yesterday,
> from_begin_month,
> from_begin_year......

--
http://www.freelists.org/webpage/oracle-l
Received on Wed Jan 12 2005 - 13:54:42 CST

Original text of this message

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