What is the differnce between view and materialized view
Answer Posted / suresh babu
View:view is a logical table,it don't have own data,the
query which we mentioned after the create view statement
will be compiled and stored in server as a database
object.once we call the view,the compiled query will be
fetch the data from master table.
The DML operations will be reflected in master table or
view suddenly.
Materialized view:The Materialized view required physical
memory space.it will be created from target master
table,which located in some other location.A materialized
view can be created either single mater table or multimater
tables from multiple master sites.the changes which we have
done in master table will reflect in particular interval
time.the materialized view,which created from multiple
master tables,will updated its individual batch files....
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
what are the advantages and disadvantages of views in a database? : Sql dba
How do I add a database to sql?
What is difference between ms sql and mysql?
How do you write an inner join query?
What is the difference between sql and t sql?
What is schema in sql example?
What mean sql?
How to handle bulk data?
How do I find sql profiler?
what is table? : Sql dba
What are sql indexes?
What are the advantages of normalization?
How are sql commands classified?
Is pl sql useful?
Explain foreign key in sql?