Difference between a View and Materialized View in oracle.View is created joining a single or multiple tables. It is an abstract of the data distributed in different tables. It points to the data of the joined tables rather than the data itself. On the other hand, materialized views have the data itself. This makes it easier and faster to access. It contains pre-computed aggregated information.
|