Difference of view.

India
March 16, 2007 1:51am CST
What is the difference between a Materialzed view and normal view
3 responses
@ashu2077 (88)
• United States
13 Jun 07
MVIEW is like a regular view with the exception that it has a table like structure. You say it is a table created from a sql. MV requires refresh to get the latest data, it is basically a SNAPSHOT of data in time it is not real time. Regular view(RV) has to table like structure, it is an object created from a sql but only in definition it does not hold data like a table. RV does not require refresh, every time u select from an RV the data is real time. Regards Ashutosh (Oracle Dba)
• United States
13 Jun 07
Sorry had a typo error in the previous comment. I meant to say RV has no table structure. Ashutosh
@rkalia73 (240)
• India
15 Apr 07
View is just another view for table data, it is not exactly a physical object, it is just a logical object. Whereas materialized view is a snapshot of table data at one particular time. Moreover Materialized View is a physical structure.
• India
2 Apr 07
Both are logical objects. But view always shows the data of the tables joined to create the view. But MV requires to refresh every time to show the present data.