normalize

  • Thread starter Thread starter fajita
  • Start date Start date
F

fajita

please explain to me why it is important to normalize your
database....
Thank you muchos
 
fajita said:
please explain to me why it is important to normalize your
database....
Thank you muchos

And... in addition to what Kevin said, elimination of redundant data means
no (less) danger of incomplete updates, making your data more reliable. The
basic idea is that if we store the same data in multiple places, and it
needs to be updated (like a person's name changing due to marriage, for
example), one or more instances of that person's name may be missed during
the update. If we store the name (and other personal information) in one
place, and relate other data in other tables to it (like multiple account
records at a bank), then we can change the name in one place and can be sure
it is in effect for all accounts.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top