Datebase Normalization attempts to, among other things, eliminate redundant data. Lets say I have 2 tables, an Invoice Header Table and an Invoice Line Item Table. For every invoice, there will be 1 header record and a line item record for each line item of course. The header record contains a field that is the sum of the 'price' field in each line item record. This is redundant since you could simply sum the 'price' fields in each line item record but having it already summed speeds processing. Does this redundancy violate any rules of normalization?
2007-02-26
06:41:21
·
2 answers
·
asked by
ncman372000
2
in
Computers & Internet
➔ Programming & Design