-
Notifications
You must be signed in to change notification settings - Fork 0
Database Normalization
James Dansie edited this page Sep 30, 2019
·
1 revision
What is database normalization? Witchcraft. It will sort out a lot of database problems early on. The primary focus of DB norm is that each table should only have one purpose. When a database has many purposes it becomes cluttered, and difficult to maintain. It also makes it error prone, and difficult to maintain. If you think of this in terms of an excel spreadsheet, then instead of one monster spreadsheet, it would be broken into many smaller unique spreadsheets. Each spreadsheet would have unique, non repeating entries.
References