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
what are the different tables present in mysql, which type of table is generated when we are creating a table in the following syntax: create table employee (eno int(2),ename varchar(10)) ? : Sql dba
How does one use sql*loader to load images, sound clips and documents? : aql loader
explain the delete statements in sql
What is microsoft t sql?
What are the sql commands?
What is the example of procedure?
Is mariadb a nosql database?
What are stored procedures used for?
What is a procedure in pl sql?
How to write html code in pl sql?
Is sql considered coding?
What is dml and ddl?
what does it mean to have quoted_identifier on? : Sql dba
Why do we need view in sql?
Is primary key a clustered index?