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
How many tables can you join in sql?
What is microsoft t sql?
how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba
what are sequences
What does the argument [or replace] do?
How sql query is executed?
What is the use of function in sql?
What is a database trigger?
What is keys and its types?
How do you delete data from a table?
how do you know if your mysql server is alive? : Sql dba
What is scope and visibility in PL/SQL?
What does partition by mean in sql?
How many functions are there in sql?
what is 'trigger' in sql? : Sql dba