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 -> Materialized Views with refresh in 8.1.7

Materialized Views with refresh in 8.1.7

From: Cosimo <REMOVEMEclongo4_at_inwind.it>
Date: Wed, 12 Jul 2006 11:01:24 +0200
Message-ID: <e92dp5$4vpe$1@stargate1.inet.it>


Hi Dbas

I ave a materialized view with logs:

CREATE MATERIALIZED VIEW log
ON aspiag_scontrino
WITH PRIMARY KEY, ROWID (
   dta_trunc_iscrizione,
   dta_trunc_acquisto,
   importo_number,
   flg_superpremio,
   tipo_punto_vendita,
   provincia,
   store,
   produttore1,
   produttore2,
   tot_chance,
   progr_chance,
   group_id)
INCLUDING NEW VALUES; CREATE MATERIALIZED VIEW mv_aspiag_scontrino_general REFRESH FORCE
START WITH SYSDATE
NEXT SYSDATE + 10/86400
AS
SELECT
   COUNT(*),
   COUNT(importo_number) count_importo,
   dta_trunc_iscrizione,
   SUM(importo_number) sum_importo,
   flg_superpremio,
   SUM(TOT_CHANCE) totale_inserimenti
FROM ASPIAG_SCONTRINO
WHERE PROGR_CHANCE=1
GROUP BY dta_trunc_iscrizione, flg_superpremio;

The materialized view mv_aspiag_scontrino_general not refresh when a row is inserted on table aspiag_scontrino.

In the file init.ora ave:
job_queue_processes = 4
job_queue_interval = 60

Where is the problem ? Received on Wed Jul 12 2006 - 04:01:24 CDT

Original text of this message

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