Key Differences Between View and Materialized View
A view is a virtual table defined by a query, but is not physically stored on disk. A materialized view is a physical copy of the results of a query stored on disk, so it responds faster than a view and uses memory space, but must be manually updated unlike a view which updates dynamically. Materialized views are precompiled snapshots of base tables that are stored on disk for faster access.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
41 views1 page
Key Differences Between View and Materialized View
A view is a virtual table defined by a query, but is not physically stored on disk. A materialized view is a physical copy of the results of a query stored on disk, so it responds faster than a view and uses memory space, but must be manually updated unlike a view which updates dynamically. Materialized views are precompiled snapshots of base tables that are stored on disk for faster access.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 1
Key Differences Between View and Materialized View
1. The basic difference between View and Materialized View is that
Views are not stored physically on the disk. On the other hands, Materialized Views are stored on the disc. 2. View can be defined as a virtual table created as a result of the query expression. However, Materialized View is a physical copy, picture or snapshot of the base table. 3. A view is always updated as the query creating View executes each time the View is used. On the other hands, Materialized View is updated manually or by applying triggers to it. 4. Materialized View responds faster than View as the Materialized View is precompiled. 5. Materialized View utilizes the memory space as it stored on the disk whereas, the View is just a display hence it do not require memory space.