Database - What are the benifits of normalizing database?

What are the benefits of normalizing database?

- It helps to avoid duplicate entries.
- It allows saving storage space.
- It enhances the performance of queries.

What are the benefits of normalizing database?

The benefits of normalization are:

- The process of searching, sorting and creating indexes is faster
- More tables can be derived for clear and needed tables to be designed
- Clustering indexes can be created which provides the flexibility in fine tuning queries.
- Less redundant data and fewer null values will make the database more compact.
- The indexes of tables make data modification commands execution much faster.
- If redundant data is not maintained, the execution of triggers is quicker.
- Normalization facilitates in reducing data modification anomalies.
Database - What is normalization?
Normalization is the way of organizing data in a database by removing redundancy and inconsistent dependency....
Database - What is denormalization?
The process of adding redundant data to get rid of complex join, in order to optimize database performance.....
Database - Explain DML and DDL statements
Data definition language is used to define and manage all attributes and properties of a database....
Post your comment