Browsing articles in "Database"
Jul
16
2010

Database Normalization

Database_Normalization

Normalization is the process of efficiently organizing data in a database, and the goal of the normalization process is to eliminating redundant data (storing the same data in many tables) and also ensuring data dependencies are logical and make sense (storing related data in a table and link them based on relationships). Both of these are important since they reduce the amount of space the database can consume and ensure that data is logically stored. [...]