What is the difference between Views and Materialized Views in Oracle?
What is the difference between Views and Materialized Views in Oracle? dacracot Materialized views are disk based and are updated periodically based upon the query definition. Views are virtual only and run the query definition each time they are accessed. Mike Williamson Views They evaluate the data in the tables underlying the view definition at the time the view is queried . It is a logical view of your tables, with no data stored anywhere else. The upside of a view is that it will always return the latest data to you . The downside of a view is that its performance depends on how good a