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

Home -> Community -> Usenet -> c.d.o.misc -> Data Warehouse Summary Table Problem

Data Warehouse Summary Table Problem

From: Crzman <crossley_at_ix.netcom.com>
Date: 1997/05/10
Message-ID: <5l30ke$kkm@sjx-ixn4.ix.netcom.com>#1/1

I have a strange problem occuring with a data warehouse load. The platform is Oracle 7.3 on NT.

There is a piece of code that creates a summary table by selecting data from a view. Basically the code is as follows:

		Truncate table
                           insert into table 

(select field 1, field2...
from view)

 The process hangs for hours when loading 1 table from a rather small view.

The strange thing about this situation is that the following code for the same table executes in about 30 seconds.

  		Drop table
                           Create table as

(select field 1, field2...
from view)

Any ideas? Received on Sat May 10 1997 - 00:00:00 CDT

Original text of this message

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