Explain difference between view and materialized view?

Submitted by: Administrator
View - store the SQL statement in the database and let you use it as a table. Every time you access the view, the SQL statement executes. Materialized view - stores the results of the SQL in table form in the database. SQL statement only executes once and after that every time you run the query, the stored result set is used. Pros include quick query results.

view : - View occupties memory to store query but not data.

Materilized view:- The view query results is stored in database knows as Materilized view.
Submitted by: Administrator

Read Online Enterprise Data Warehouse Job Interview Questions And Answers