Hi
I have an employee_summary view which is based on multiple sub queries and complex joins. I have around 15 tables which are involved in the creation of the view
The view "Employee_Summary" works fine and the data is correct
Can I create a Materialized view(MV_Employee_Summary) in Oracle 8 and Oracle 9 like below ...
Create Materialized View MV_Employee_Summary as select * from Employee_Summary.
Would it work in both Oracle 8 and Oracle 9 when we try to create a materialized view from a normal view
I have an employee_summary view which is based on multiple sub queries and complex joins. I have around 15 tables which are involved in the creation of the view
The view "Employee_Summary" works fine and the data is correct
Can I create a Materialized view(MV_Employee_Summary) in Oracle 8 and Oracle 9 like below ...
Create Materialized View MV_Employee_Summary as select * from Employee_Summary.
Would it work in both Oracle 8 and Oracle 9 when we try to create a materialized view from a normal view