show/hide this revision's text 2 Fixed typo

Just an extra comment that is often overlooked. Sometimes not using a surrogate key has benefits in the child tables. Let's say we have a design that allows you to run multiple companies within the one database (maybe it's a hosted solution, or whatever).

Let's say we have these tables and columns:

Company:
  CompanyId   (pk)

CostCenter:
  CompanyId   (pk, fk to Company)
  CostCentre  (pk)

CostElement
  CompanyId   (pk, fk to Company)
  CostElement (pk)

Invoice:
  InvoiceId    (pk)
  CompanyId    (pk, in fk to CostCentre, in fk to CostElement)
  CostCentre   (in fk to CostCentre)
  CostElement  (in fk to CostElement)

Incase that last bit doesn't make sense, Invoice.CompanyId is park part of two foreign keys, one to the CostCentre table and one to the CostElement table. The primary key is (InvoiceId, CompanyId).

In this model, it's not possible to screw-up and reference a CostElement from one company and a CostCentre from another company. If a surrogate key was used on the CostElement and CostCentre tables, it would be.

Less chances to screw up the better.

show/hide this revision's text 1

Just an extra comment that is often overlooked. Sometimes not using a surrogate key has benefits in the child tables. Let's say we have a design that allows you to run multiple companies within the one database (maybe it's a hosted solution, or whatever).

Let's say we have these tables and columns:

Company:
  CompanyId   (pk)

CostCenter:
  CompanyId   (pk, fk to Company)
  CostCentre  (pk)

CostElement
  CompanyId   (pk, fk to Company)
  CostElement (pk)

Invoice:
  InvoiceId    (pk)
  CompanyId    (pk, in fk to CostCentre, in fk to CostElement)
  CostCentre   (in fk to CostCentre)
  CostElement  (in fk to CostElement)

Incase that last bit doesn't make sense, Invoice.CompanyId is park of two foreign keys, one to the CostCentre table and one to the CostElement table. The primary key is (InvoiceId, CompanyId).

In this model, it's not possible to screw-up and reference a CostElement from one company and a CostCentre from another company. If a surrogate key was used on the CostElement and CostCentre tables, it would be.

Less chances to screw up the better.