What is the differnce between view and materialized view

Answers were Sorted based on User's Feedback



What is the differnce between view and materialized view..

Answer / nivedita

view is a virtual table.view does not contain any data
while material view has its own data.material views are the
local copies of remote data.

Is This Answer Correct ?    10 Yes 0 No

What is the differnce between view and materialized view..

Answer / yaswanth

A view will takes the output of the query. But a materialized
view stores the output of the query which is not possible in
view

Is This Answer Correct ?    7 Yes 0 No

What is the differnce between view and materialized view..

Answer / 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

What is the differnce between view and materialized view..

Answer / papia

view does not contain actual data but MV contains data.MV
needs to be refereshed after a particular interval.Bit when
a view is queried it actually queries the underlying tables.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

write a query to find out the no. of employees whose age is less than 25 and max of salary for the employees belonging to a particular department is less than 20000

6 Answers  


How do you get all records from 2 tables. Which join do you use?

8 Answers   Microsoft,


Which are sql * plus commands?

0 Answers  


What are the two types of cursors in pl sql?

0 Answers  


Can we create non-clustured index on a clustered index ?

4 Answers   TCS,


Write a pl/sql script to display the following series of numbers: 99,96,93……9,6,3?

1 Answers  


Is it possible to include an insert statement on the same table to which the trigger is assigned?

0 Answers  


Does sql view stored data?

0 Answers  


how to achieve this problem?i am having table with two colums like empno,gender. in gender column, i am having records male,female like that .my final output will be male female 5 6

4 Answers   Hexaware,


In packages the source code is compiled into p code ? how do we describe the p code

3 Answers  


how can we repair a mysql table? : Sql dba

0 Answers  


Is sql free?

0 Answers  


Categories