What is a materialized view?

Answer Posted / muhammadrashidmughal

In a database management system following the relational
model, a view is a virtual table representing the result of
a database query. Whenever an ordinary view's table is
queried or updated, the DBMS converts these into queries or
updates against the underlying base tables. A materialized
view takes a different approach in which the query result
is cached as a concrete table that may be updated from the
original base tables from time to time. This enables much
more efficient access, at the cost of some data being
potentially out-of-date. It is most useful in data
warehousing scenarios, where frequent queries of the actual
base tables can be extremely expensive.

In addition, because the view is manifested as a real
table, anything that can be done to a real table can be
done to it, most importantly building indexes on any
column, enabling drastic speedups in query time. In a
normal view, it's typically only possible to exploit
indexes on columns that come directly from (or have a
mapping to) indexed columns in the base tables; often this
functionality is not offered at all.

Materialized views were implemented first by the Oracle
database.

There are three types of materialized views:

1) Read only

Cannot be updated and complex materialized views are
supported
2) Updateable

Can be updated even when disconnected from the master site.
Are refreshed on demand.
Consumes fewer resources.
Requires Advanced Replication option to be installed.
3) Writeable

Created with the for update clause.
Changes are lost when view is refreshed.
Requires Advanced Replication option to be installed

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

tell me what is blocking and how would you troubleshoot it? : Sql server database administration

673


Which joins are sql server default?

681


How to modify an existing stored procedure in ms sql server?

737


What to check if a User database is locked?

768


How to use subqueries in the from clause in ms sql server?

800






what is an index? : Sql server database administration

678


What are click through reports?

118


Do you know the different ddl commands in sql?

761


Stored Procedure returns data from multiple tables. How to access it in your ASP.Net code?

731


Write a SQL query to delete a table?

844


How to get a list of all tables with "sys.tables" view in ms sql server?

761


What is the language structure to add a record to a table?

760


What is merge join?

808


What is a cube? : sql server analysis services, ssas

714


How much is a sql server license?

687