Tagged Questions
The materialized tag has no wiki summary.
3
votes
4answers
2k views
ORACLE : Materialized view not working when Using LEFT JOIN
I want to create a MATERIALIZED VIEW from a LEFT JOIN of 2 tables. However the following gives me an error:
SELECT field1
FROM table_1 a
LEFT JOIN table_2 b
ON a.field1=b.field2
...
1
vote
2answers
701 views
Indexed Views in OLTPs?
I'm familiar with SQL Server Indexed Views (or Oracle Materialized Views), we use them in our OLAP applications. They have the really cool feature of being able to usurp an execution plan and remap it ...
0
votes
0answers
21 views
Algorithm for materialized views
Please, I'm looking for examples and documentation to how implement the algorithm of yang an al 1997 for selection of materialized views in data warehouses.
Thank you very much.
0
votes
1answer
2k views
ORACLE : Materialized view- change START WITH CLAUSE
I created a Materialized view using the following code:
CREATE MATERIALIZED VIEW M_USER_HIERARCHY
BUILD IMMEDIATE
REFRESH COMPLETE
START WITH TO_DATE('25-Aug-2009 10:34:24','dd-mon-yyyy ...