What is normalization with an example?

Very first Normalization(What is normalization with an example) removes the multivalued attribute, Which means there will be a single tuple value for one attribute. In simple language, one column will have one value. for example, if we store the phone number in an employee table then each employee will have only one phone number in one single record.

Within this blog(What is normalization with an example), we will cover What is normalization and the types of normalization? What is the concept of normalization? What is normalization with an example?…

… What is the normalization of why it is used? The need for normalization in DBMS? Step-by-step normalization example|What is normalization with an example|

Normalization(What is normalization with an example)is a process to make our database schema in such a way that we can access our data from the database very easily without any conflict and complication.

Normalization(What is normalization with an example) is a process of breaking a complex table structure into smaller tables to make easy access to data from the table.

Normalization(What is normalization with an example) is a process to remove redundancy attribute values from the database and also remove the functional dependency from the data table or database.

Redundancy in Normalization:

Redundancy is multiple presences of one record with different 2 attribute values. For example, if an employee has two phone numbers thus we store both phone numbers with the use of two records in one table.

Functional Dependency in Normalization:

When one attribute is uniquely identified by another attribute then one functional dependency exists here. I will discuss this section in detail in my upcoming blogs.

normalization types
Types of Normalization

To achieve this normalization many normal forms have been defined. Normal form (1NF, 2NF, 3NF) were defined by ”Codd’ . The above-given fig. shows that all normalized relations are in 1NF. Some 1 NF relations are also in 2NF, and some 2NF relations are also in 3NF.

So the motivation behind the Codd definition was that 2NF was more desirable than 1NF, and in turn, 3NF was more desirable than 2NF. Thus the database designers should aim for a design involving relations in 3NF, not ones that are merely in 2NF or 1NF.

But Codd’s original definition of 3NF turned out to be suffering from certain inadequacies.

A stronger definition of 3NF, called Boyce-Codd normal form (BCNF) was proposed later by Boyce and Codd.

All these normal forms are based on the functional dependencies among the attribute of a relation subsequently, Fagin defined a fourth normal form 4NF, and a fifth normal form 5NF based…

… on the concept of multivalued dependencies and join dependencies respectively. The 5NF is also known as a projection-join normal form(PJ/NF)

Thus the normalization of data is a process of analyzing the given schema based on its functional dependencies and primary keys to…

… achieving desirable properties of minimizing the redundancy and minimizing the insertion, deletion, and update anomalies.

Need for Normalization:

Normalization is the process of converting a relation into a standard form.

for example, we have relation suppliers with attributes name, address, item, and price.

Suppliers(Name, Address, Item, Price)

Now the problem that can we face due to this relation is detailed below.

Redundancy

The address of the supplier is repeated once for each item supplied. So this causes the repetition of the same information many times.

Update anomalies

As we have redundancy in our relationship that is the same information, some get updated while others remain fixed, which will result in inconsistency. As in the above example if we update the address of the supplier in one tuple while leaving it fixed in another. Thus we would not have a unique address for each supplier.

Insertion Anomalies:

We can not insert a tuple in a relationship if that tuple does not have any value for any of the attributes in a relation.

For example, We can not record an address for suppliers, if that supplier does not currently supply at least one item. we might put null values in the item and price components of a tuple for that supplier but then, when entering an item for that supplier, we will remember to delete the tuple with null.

Deletion Anomalies:

By deleting some information, we lose some other information too. For example, if we delete all items supplied by one supplier, we unintentionally lose track of their address.

So, due to the all above problems, we normalize a relationship. In this example, if we replace supplier with two relation schemas

SA (name, address)
SIP(name, Item, price)

Then in SA, for each supplier, we have an address separately without any redundancy. At the same time, we can enter an address for a supplier even if it currently supplies no item.

What is 1NF in DBMS?

What is 2NF in DBMS?

What is 3NF in DBMS?

What is BCNF in DBMS?

You can also go through a few more amazing blog links related to DBMS below:

Composite key: Composite key vs Super key…
What is the null value Problem in DBMS…
What is the super key in DBMS…
What is a candidate key in DBMS…
What is Key in DBMS…
BCNF – Boyce Codd Normal Form…
3NF – Third normal form…
2NF – Second Normal Form…
What is1NF(First Normal Form)…
What is normalization with an example…
What do you mean by distributed DBMS and what are its types…
What is DBMS ARCHITECTURE…
DBMS vs RDBMS: What is the main difference between DBMS and RDBMS…
What are the functions of DBA in DBMS…
Integrity constraints in DBMS…

Conclusion:

If we conclude this Normalization(What is normalization with an example) here then we can say that Normalization is a process for making our database or table or relation or entity as simple as possible, I mean to say that attribute in a relation should be unique pointing a full record detail without any redundancy of it. While acting like insertion, update, and delete no conflict or data loss should happen. In my next blog post, I will discuss all the types of normalization in detail with the appropriate example.

Using this blog post(What is normalization with an example) we have gone through What is normalization and the types of normalization? What is the concept of normalization? What is normalization for example? What is normalization and why it is used? Types of normalization Normalization formula, Normalization meaning, Normalization example with solution, Step-by-step normalization example, Need of normalization in DBMS.

Hope! you would have found this post(What is normalization with an example) very useful regarding Normalization’s basic concept. Please feel free to contact us if you have any doubts about the normal form. You can simply write to us at a5theorys@gmail.com.

Anurag

I am a blogger by passion, a software engineer by profession, a singer by consideration and rest of things that I do is for my destination.