Welcome to deBUG.to Community where you can ask questions and receive answers from Microsoft MVPs and other experts in our community.
0 like 0 dislike
801 views
in SQL Queries by 2 2 3

I want to know What is normalization and types of normalization?,when I use it on the table and how can  apply it on this table 

                              


1 Answer

1 like 0 dislike
by 23 25 39
edited by

Normalization in SQL Server

Normalization is the process of organizing data to minimize data redundancy (data duplication), which in turn ensures data consistency.

Note: Data redundancy can lead to inconsistency data.

The problem of data redundancy

  • Disk space wastage
  • data inconsistency
  • DML queries can be slow

There are five types for normalization

First Normal Form (1st NF):

  • Identify data with primary key
  • the data in each column should be atomic no multiple value in column

Second Normal Form (2nd NF):

Create separate tables for sets of values and Relate these tables with a foreign key.

Third Normal Form (3rd NF):

Eliminate fields that do not depend on the primary key.
Other normalization forms:
They are rarely considered in practical design. Disregarding these rules may result in less than perfect database design, but should not affect functionality.

Normalization Example

To apply normalization on the Product table will divide the table into two tables Product and department as shown below .This example for third normal form:
-Eliminate redundant data you create Department table that contain DepartmentID and DepartmentName
-Set DepartmentID as primary key
-In Product table set ID as primary key and DepartmentID is foreign key to make relation between two tables
-Now

Normalization in SQL Server

If you don’t ask, the answer is always NO!
...