Sunday, September 1, 2024

Difference between View vs Materialized View in Database or SQL

 The difference between View and Materialized view is one of the popular SQL interview questions, much like truncate vs deletecorrelated vs noncorrelated subquery, or primary key vs unique key. This is one of the classic questions which keeps appearing in SQL interviews now and then and you simply can’t afford to learn about them. Doesn’t matter if you are a programmer, developer, or DBA, these SQL questions are common to all. Views are a concept which not every programmer is familiar with, it is simply not in the category of CRUD operation or database transactions or SELECT query, its little advanced concept for the average programmer.


Views allow a level of separation than an original table in terms of access rights but it always fetches updated data. 

Let’s see what is View in the database, what is materialized View, and the difference between view and materialized view in the Oracle database.





What is View in a Database?

Views are a logical virtual table created by “select query” but the result is not stored anywhere in the disk and every time we need to fire the query when we need data, so always we get updated or the latest data from original tables.

The performance of the view depends on our select query. 

If we want to improve the performance of view we should avoid using join statements in our query or if we need multiple joins between tables always try to use the index-based column for joining as we know index-based columns are faster than a non-index-based column.

View also allows storing the definition of the query in the database itself.


difference between view and materialized view in SQL and database




What is Materialized View in a Database?

Materialized views are also the logical view of our data-driven by the select query but the result of the query will get stored in the table or disk, also the definition of the query will also store in the database.

When we see the performance of Materialized view it is better than normal View because the data of materialized view will be stored in table and table may be indexed so faster for joining also joining is done at the time of materialized views refresh time so no need to every time fire joins statement as in case of view.




Difference between View vs Materialized View in database

Based upon on our understanding of View and Materialized View, Let’s see, some short differences between them :

1) The first difference between View and materialized view is that In Views query result is not stored in the disk or database but Materialized view allows to store the query result in disk or table.


2) Another difference between View vs materialized view is that, when we create a view using any table, rowid of view is the same as the original table but in the case of Materialized view rowid is different. 

3) One more difference between the View and materialized view in the database is that In the case of View we always get the latest data but in the case of the Materialized view we need to refresh the view for getting the latest data.

4) Performance of View is less than Materialized view.

5) This is the continuation of the first difference between View and Materialized View, In the case of view it's only the logical view of the table no separate copy of the table but in the case of Materialized view we get a physically separate copy of the table

6) Last difference between View vs Materialized View is that In the case of Materialized view we need an extra trigger or some automatic method so that we can keep MV refreshed, this is not required for views in the database. 


When to Use View vs Materialized View in SQL

Mostly in an application, we use views because they are a more feasible, only logical representation of table data no extra space is needed.

We easily get a replica of data and we can perform our operation on that data without affecting actual table data but when we see a performance that is crucial for a large application they use a materialized view where Query Response time matters.

So, Materialized views are used mostly with data warehousing or business intelligence application.

view vs materialized view in oracle



That’s all about the difference between View and Materialized View in database or SQL. I suggest always preparing this question in good detail and if you can get some hands-on practice like creating Views, getting data from Views then try that as well.

No comments:

Post a Comment