Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Materialized view - ON COMMIT
Hi, All!
I am having a headache now how to force materialized view to refresh on
commit(Oracle 8.1.5 EE NT4.0)
Whatever I was doing, I was getting ORA-12051 on simple select view, even
if I hadn't any aggregates( really we have need of view of aggregated sums
like "select raschet.date_month,account_num,sum(raschet.summa) from raschet
group by date_month,account_num"), on single table!. I could write trigger
to do the same work, but writing materialized view appeared to me
simpler,heh. Refreshing on scheduling basis seems to my manager not
acceptable.
Bad syntax? ini parameter? Bad installation? What's wrong?
I would be appreciated to receive any suggestions
Oleg Fedorenkov,DBA
Materialized view log created.
SQL> create materialized view account_status
2 refresh fast on commit as
3 select raschet_id from raschet
4 /
select raschet_id from raschet
*
![]() |
![]() |