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 do you explain an index?
how to start mysql server? : Sql dba
What is pivot table in sql?
what is a primary key? : Sql dba
what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba
when MSQL8.0 is in market
How do you respond to dementia behavior?
Explain what is table in a database?
what is an index? : Sql dba
What is sql injection owasp?
What are three advantages to using sql?
Which is better stored procedure or query?
Is stored procedure faster than query?
Do we need to rebuild index after truncate?
What is trigger explain with example?