When to Denormalize a Database Design

Your senior colleague is a developer, not a data modeller. You are better off starting from scratch, without them. Normalisation is complicated only to those who will not read books. It is fair enough that he makes you think, but some of the issues are absurd.

Your numbers:

  1. You need to appreciate the differences between actual online data, and historic data; then the difference between merely historic and archival needs. All of them are right for the specific business requirement, and wrong for all others, there is no universal right and wrong.

    • why is there no paper-based copy of the invoice ? In most countries that would be a legal and tax requirement, what exactly is the difficulty of fishing out the old invoice ?
    • where the database has the requirement of storing the closed invoices, then sure, as soon as the invoice is closed, you need a method of capturing that information.
    • ProductPrice (actually, I would call it ProductDate) is a good idea, but may not be necessary. But you are right, you need to evaluate the currency of data, in the full context of the whole database.
    • I cannot see how copying the product price to the invoice table would help (are not there many line items ?)
    • in modern databases, where the copy of the invoice is required to be regurgitated, the closed Invoice is additionally stored in a different form, eg XML. One customer saves the PDFs as BLOBs. So there is no messing around with what the product price was five years ago. But the basic invoice data is online and current, even for closed invoices; you just cannot recalculate ancient invoice using current prices.
    • some people use an archive_invoice table, but that has problems because now every code segment or user report tool has to look in two places (note that these days some users understand databases better than most developers)
  • Anyway, that is all discussion, for your understanding.  Now for the technical intent.
    • The database serves current and archival purposes from the one set of tables (no “archive” tables
    • Once an Invoice is created, it is a legal document, and cannot be changed or deleted (it can be reversed or partially credited by a new Invoice, with negative values). They are marked IsIssued/IsPaid/Etc
    • Products cannot be deleted, they can be marked IsObsolete
    • There are separate tables for InvoiceHeader and InvoiceItem
    • InvoiceItem has FKs to both InvoiceHeader and Product
    • for many reasons (not only those you mention), the InvoiceItem row contains the NumUnits; ProductPrice; TaxAmount; ExtendedPrice. Sure, this looks like a “denormalisation” but it is not, because prices, taxation rates, etc, are subject to change. But more important, the legal requirement is that we can reproduce the old invoice on demand.
    • (where it can be reproduced from paper files, this is not required)
    • the InvoiceTotalAmount is a derived column, just SUM() of the InvoiceItems
  1. That is rubbish. Accounting systems, and accountants do not “work” like that.

    • If it is a true accounting system, then it will have JournalEntries, or “double entry”; that is what a qualified account is required to use (by law).

    • Double Entry Accounting does not mean duplicate entries; it means every financial transaction (one amount) shall have a source account and target account that it is applied to; so there is no “denormalisation” or duplication. In a banking database, because the financial transactions are against single accounts, that is commonly rendered as two separate financial transactions (rows) within one Db Transaction. Ordinary commercial database constraints are used to ensure that there are two “sides” to every financial transaction.

    • Ensuring that Invoices are not deleteable is a separate issue, to do with security, etc. if anyone is paranoid about things being deleted from their database, and their database was not secured by a qualified person, then they have more and different problems that have nothing to do with this question. Obtain a security audit, and do whatever they tell you.

    • Wikipedia is not a reliable source of information about any technical subject, let alone Normalisation.

    • A Normalised database is always much faster than Un-Normalised database
      So it is very important to understand what Normalisation and Denormalisaion is, and what it isn’t. The process is greatly hindered when people have fluid and amateur “definitions”, it just leads to confusion and time-wasting “discussions”. When you have fixed definitions, you can avoid all that, and just get on with the job.

    • Summary tables are quite normal, to save the time and processing power, of recalculating info that does not change, eg: YTD totals for every year but this year; MTD totals for every month in this year but not this month. “Always recalculating” data is a bit silly when (a) the info is very large and (b) does not change. Calculate for the current month only

      • In banking systems (millions of Trades per day), at EndOfDay, we calculate and store Daily Total as well. These are overwritten for the last five days, because Auditors are making changes, and JournalEntries against financial transactions for the last 5 days are allowed.
      • non-banking systems generally do not need daily totals
    • Summary tables are not a “denormalisation” (except in the eyes of those who have just learned about “normalisation” from their magical, ever-changing fluid “source”; or as non-practitioners, who apply simple black-or-white rules to everything). Again, the definition is not being argued here; it simply does not apply to Summary tables.

    • Summary tables do not affect data integrity (assuming of course that the data that they were sourced from was integral).

    • Summary tables are an addition to the current data, which are not required to have the same constraints as the current data. There are essentially reporting tables or data warehouse tables, as opposed to current data tables.

    • There are no Update Anomalies (which is a strict definition) related to Summary tables. You cannot change or delete an invoice from last year.  Update Anomalies apply to true Denormalised or Un-Normalised current data.


Response to Comments

so its ok to do denormalisation for the sakes of archiving right?

My explanation above appears not to be clear enough. Let’s look at an example, and compare the options.

Foo

Foo

Foo

So, no. Archiving is a hideous option (I have corrected thousands of archived tables back to their home; corrected the indices, and restored normal performance, as well as returning the SELECT to query just one table instead of two). But if you do archive, it is not denormalised, it is worse, a copy.

Foo

The best option by far. Again, this is the simple version, the full version requires an understanding of the temporal definition in Codd’s Relational Model (not the ever-changing nonsense marketed by the detractors), and an SQL-compliant platform.


I disagree strongly with the statement that “A Normalised database is always much faster than Unnormalised database”. That is patently false even if I don’t harp on the use of “always”. There are many scenarios in which selective, coherent denormalization of a database can result in extreme performance improvement.

Example [of justified De-Normalisation]: a complex join for a date-limited data set, like a month-end summary for a complex business. If the data is collected over the course of a month; then forever stable; and queried often — it can make sense to pre-compute via a materialized view, trigger, or more sophisticated method.

Evidently we need clear definitions.

  • Normalisation

    • Purpose
      to eliminate (not merely reduce) duplicate data
      Note that there are no complex joins, just ordinary simple joins.
    • Method
      Formal Relational data modelling
      (not stepping through the NFs by number).
  • Un-Normalised
    Failure to Normalise properly, leaving Update Anomalies in the database, and makes a mess of the Transactions

  • De-Normalised
    After formal Normalisation, one or more columns additionally placed in chosen tables, for performance reasons.

    • Eg. the pretend “SQL” does not perform the normal query with acceptable speed.
    • Note that, over a period of 40 years of replacing poor databases, all databases that were declared to be De-normalised have in fact been Un-Normalised.
  • Summary Table/Materialised View
    As detailed above in the Answer (please read again), and as illustrated in the graphic Current Only, it is an additional table to serve the purpose of providing summary values for history, that does not change.  This is common.  

    • There is no column that is duplicated, it cannot be categorised as “De-Normalisation”.

You were not in disagreement with my statement [A Normalised database is always much faster than Unnormalised database], which relates to Normalised vs Un-Normalised, you were categorising the summary table incorrectly, as “de-Normalised”.


If you can know in advance what complex, time-consuming queries a database will receive, you can precompute the results of those queries — for example, replacing a 14-table join with a table that already contains the needed data.

That is different again.  The two common reasons for that are:

  1. the database isn’t Normalised in the first place, so queries on large tables are slow
    • the proper cure is to Normalise properly
  2. your pretend “SQL” is so slow
    • the proper cure for that is to obtain a genuine SQL Platform.

Such that you need to build an additional file (or Materialised View) to service the slow queries.  Yes, that is de-Normalising, and on a grand scale, but it is worse, it is a 100% copy of those fields.

Leave a Comment