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
Which operator is used in query for pattern matching?
How sql query is executed?
Can we use threading in pl/sql?
What is database sql?
What is thread join () in threading?
What are the different types of a subquery?
What is partition by in sql?
What is a procedure in pl sql?
How do you clear the screen in sql?
what are the 'mysql' command line options? : Sql dba
how is exception handling handled in mysql? : Sql dba
What is pl/sql table? Why is it used?
what are the advantages of mysql in comparison to oracle? : Sql dba
How can you fetch common records from two tables?
What is sql character function?