What is database normalization?

Answers were Sorted based on User's Feedback



What is database normalization?..

Answer / koti-khammam

It is the process of removing redundancy(repeated data) by
splitting the tables into smaller tables.

Is This Answer Correct ?    37 Yes 3 No

What is database normalization?..

Answer / anirudh

Normalization is breaking the database into different
tables and defining a relationship between them.
Objective is to isolate the data so that additions and
deletions can be made in one table and propagated to other
tables through relationships.

Is This Answer Correct ?    20 Yes 1 No

What is database normalization?..

Answer / shruti

Normalization is the process of breaking tables of a
database into smaller tables and defining relations between
them to make them more flexible, efficient and to remove the
modification anamolies from the database.

Is This Answer Correct ?    15 Yes 1 No

What is database normalization?..

Answer / kranthi

Normalization is the process of structuring relational
database schema such that most ambiguity is removed. The
stages of normalization are referred to as normal forms and
progress from the least restrictive (First Normal Form)
through the most restrictive (Fifth Normal Form).

Is This Answer Correct ?    8 Yes 1 No

What is database normalization?..

Answer / dr. tawfik khattab

Normalization is the process of efficiently organizing data
in a database.
The goals of the normalization process asfollows:
1- Eliminating redundant data
2- Ensuring data total dependence on the Pk or on the
Composite PK

Is This Answer Correct ?    6 Yes 1 No

What is database normalization?..

Answer / padmapriya

Noramalization is process of breaking the information into
well defined tables which should follow some rules. There
are 5 Normal forms available. Each one having a separate
rule.
1NF-Avoid redundant data
2NF-All coulms except primary key column should be related
to the primary key column
3NF,4NF and 5NF - I'dont remember , if any one knows please
reply

Is This Answer Correct ?    3 Yes 2 No

What is database normalization?..

Answer / maskfriend

Normalize the data from the detabase.It reduces by the
normalisation rule like(there are 4 normalization rule and
BCNF)

Is This Answer Correct ?    10 Yes 11 No

Post New Answer

More SQL Server Interview Questions

Do you know what is difference between stored procedure and user defined function?

0 Answers  


What are different types of Keys? Please explain all the keys with a suitable example.

4 Answers  


write down the sql query? Table Name : emp1 empid empname 1 bala 2 guna Table Name : emp2 empid empname 1 <Null> 2 <Null> Solution : emp1 names are updated in emp2, write a query?

8 Answers  


We need to perform what steps in the following order to work with a cursor?

0 Answers  


Is natural join and equi join same?

0 Answers  






Which are the olap features?

0 Answers  


where the connection string store in the database

0 Answers   HCL, Wipro,


Explain what stored procedure sp_replcounters is used for? : sql server replication

0 Answers  


What are the indexes in sql server?

0 Answers  


Introduction of rollup clause using sum and group by clause?

0 Answers  


How can I check if a view exists in a sql server database?

0 Answers  


What is difference between aggregate and analytic function?

0 Answers  


Categories