What is normalization and its forms?

Answer Posted / rohit

Database normalization, sometimes referred to as canonical
synthesis, is a technique for designing relational database
tables to minimize duplication of information and, in so
doing, to safeguard the database against certain types of
logical or structural problems, namely data anomalies. For
example, when multiple instances of a given piece of
information occur in a table, the possibility exists that
these instances will not be kept consistent when the data
within the table is updated, leading to a loss of data
integrity. A table that is sufficiently normalized is less
vulnerable to problems of this kind, because its structure
reflects the basic assumptions for when multiple instances
of the same information should be represented by a single
instance only.

Higher degrees of normalization typically involve more
tables and create the need for a larger number of joins,
which can reduce performance. Accordingly, more highly
normalized tables are typically used in database
applications involving many isolated transactions (e.g. an
automated teller machine), while less normalized tables tend
to be used in database applications that need to map complex
relationships between data entities and data attributes
(e.g. a reporting application, or a full-text search
application).

Database theory describes a table's degree of normalization
in terms of normal forms of successively higher degrees of
strictness. A table in third normal form (3NF), for example,
is consequently in second normal form (2NF) as well; but the
reverse is not necessarily the case.

Although the normal forms are often defined informally in
terms of the characteristics of tables, rigorous definitions
of the normal forms are concerned with the characteristics
of mathematical constructs known as relations. Whenever
information is represented relationally, it is meaningful to
consider the extent to which the representation is normalized.

Is This Answer Correct ?    9 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What happens if null values are involved in string operations?

546


you notice that the transaction log on one of your databases is over 4gb the size of the data file is 2mb what could cause this situation, and how can you fix it? : Sql server administration

532


How to write a query with an inner join in ms sql server?

538


Can we run Reporting Services with SQL Server express edition, which is a free version of SQL Server?

78


What is user-defined multi-statement table-valued function?

653






Do you know what are the differences between lost updates and uncommitted dependencies?

531


What happens if you insert a duplicate key for the primary key column in ms sql server?

522


Is it true, that there is no difference between a rule and a check constraint?

517


Can we insert data into view sql server?

506


What is inline variable assignment?

583


How you would rewrite the sql query to return the customerid sorted numerically?

568


How to get a list of columns using the "sp_help" stored procedure in ms sql server?

578


What is trace flag in sql server?

510


Can you please explain the difference between primary keys and foreign keys?

648


How you can change a cross join into an inner join?

541