database normalisation
Sign in to saveAlso known as database normalization
reduction of data redundancy
~16 min read
Encyclopedic overview
Database normalization is the process of structuring a relational database in accordance with a series of normal forms to reduce data redundancy and improve data integrity. It was first proposed by British computer scientist Edgar F. Codd as part of his relational model.
Normalization entails organizing the columns (attributes) and tables (relations) of a database to ensure that their dependencies are properly enforced by database integrity constraints. It is accomplished by applying some formal rules either by a process of synthesis (creating a new database design) or decomposition (improving an existing database design).
Excerpted from Wikipedia’s “database normalisation” article, available under the CC BY-SA 4.0 licence.