Difference between views and materialized views?
Answer Posted / guru
View: View is a virtual table, a query attached to it.
Actually it have not Stored query results. It will execute
and returns rows.
A materialized view is a database object that contains the
results of a query. They are local copies of data located
remotely, or are used to create summary tables based on
aggregations of a table's data. Materialized views, which
store data based on remote tables are also, know as
snapshots.A materialized view can query tables, views, and
other materialized views. Collectively these are called
master tables (a replication term) or detail tables (a data
warehouse term)
| Is This Answer Correct ? | 29 Yes | 0 No |
Post New Answer View All Answers
How many types of primary keys are there?
how to get help information from the server? : Sql dba
How many unique keys can a table have?
Is sql procedural language?
What is fmtonly in sql?
Is join same as left join?
What is the difference between delete and truncate statement in sql?
What is sql injection vulnerability?
Which kind of parameters cannot have a default value in pl sql?
how to load data files into tables with 'mysqlimport'? : Sql dba
What is rownum?
What's the difference between a primary key and a clustered index?
What is the difference between numeric and autonumber?
What is a stored procedure in sql with example?
What are pl/sql cursor exceptions?