1.

What is meant by normalization and denormalization?

Answer»

NORMALIZATION is a process of REDUCING redundancy by organizing the data into multiple tables. Normalization leads to better usage of disk spaces and makes it easier to maintain the integrity of the database.  

Denormalization is the REVERSE process of normalization as it COMBINES the tables which have been normalized into a single table so that data retrieval becomes faster. JOIN operation allows us to create a denormalized form of the data by REVERSING the normalization. 



Discussion

No Comment Found