Sie sind auf Seite 1von 2

VIEW 1. View is a logical structure of a table. 2.

View sits on top of a table and when ever a query has been executed on the view it fetches data from the table. 3. All DML operations are allowed. 4. Not possible

5. Not possible 6. Not possible 7. We can create a view without base table.

Document

MATERIALIZED VIEW 1. MV is not a logical structure. It occupies space in Database. Its just like a snapshot. 2. Materialized views have the data itself. This makes it easier and faster to access. It contains pre-computed aggregated information. 3. All DML operations are not allowed. 4. We can do incremental refresh of data by using the option 'Fast Refresh'. 5. We can refresh the entire table as per our requirement if any data changes in the target by using the option 'On commit refresh'. 6. We can also schedule to run MV on our required time in oracle. 7. We cannot create a MV without base table.

Read document on Materialized View given beside.

Das könnte Ihnen auch gefallen