In case you're new to the series I've compiled a list of ten data modeling mistakes that I see over and over that I'm tackling one by one. I'll be speaking about these topics at the upcoming IASA conference in October, so I'm hoping to generate some discussion to at least confirm I have well founded arguments.
The last post in this series Referential Integrity was probably less controversial than this one. After all, who can argue against enforcing referential integrity? But as obvious as surrogate keys may be to some, there is a good deal of diversity of opinion as evidenced by the fact that people continue to not use them.
I intend to address this topic by way of a fairly ubiquitous example that should draw out all of the arguments. I'll investigate the options for primary keys in a Person table. I'll provide four possible options and explain why each of them is a bad choice. I'll then give four arguments against surrogate keys, which I will then shoot down. So without further ado:
Contender 1: Name and Location
Of course you can't use name as a primary key for a person, because two people can have the same name and primary keys must be unique. But all too often I've seen databases with multiple, sometime numerous, natural (or business-related) primary keys. These databases combine a field like name with enough other fields such that the likelihood of uniqueness is approaching certainty.
In the case of person this would be equivalent to First and Last Name (wouldn't want to violate first normal form by combining those into one field, but that's a whole other topic), zip code, and we ought to throw address line 1 in to be safe. This is known as either a compound, composite, or multicolumn index.
Now our chances of uniqueness are close enough to certain to not warrant discussion, so let's jump right to space and performance. There are three major problems with this approach.
Con 1: Primary key size. The primary key index for person becomes enormous. The database must now catalog four large (probably all varchar) fields. This increases the size of the index which increases overhead for insert, delete and update operations and can even decreases read speed because of the increased disk I/O.
Con 2: Foreign key size. If you have a child table like PhoneNumber then, as the diagram above shows, the foreign key becomes four columns. Those four columns take up a lot of space again. And now a common query like "Get all phone numbers for a person" involves a full table scan, or, if you throw an index on them you end up with another huge index. In fact, you most likely end up propagating huge indexes and vast amounts of data all over the place like some evil data-cancer.
Con 3: Asthetics. It just isn't pretty. Having four column foreign keys all over the place increases the amount of code you need to write in stored procedures, middle tier, and presentation tier. Even intellisense won't help you with this one.
Contender 2: Social Security Number
The most obvious choice for a natural key for a person object is social security number, right? Obviously it depends on what type of data person is, but regardless you'll probably face the following four problems with this primary key candidate:
Con 4: Optionality. The social security administration specifies that U.S. citizens are not required to provide social security numbers in many circumstances. While employment is one of these circumstances, consumers of non-governmental services are definitely not. You can deny service if your consumer won't provide the number, but is your CEO prepared to turn away business based on a data modeling decision you make?
Con 5: Applicability. Only U.S. citizens have a social security number. Your system might only cater to U.S. citizens now, but will it always?
Con 6: Uniqueness. The social security administration "is adamant" that the numbers are not recycled, even after someone dies. But eventually the numbers will run out. If you visit the slate article cited above, it calculates this date as in the next century. But the math fails to include the fact that location information is encoded in the number which significantly limits the permutations. I don't know what the real number is, but the point is: you're gambling with how long until a conflict occurs. And even if the time argument fails to sway you, just think of who is assigning the numbers. How much do you trust a government office to not make an occasional mistake?
Con 7: Privacy. Does your application use primary keys in the user interface tier to uniquely identify records? Does it pass primary keys between pages or use them to identify rows in a combo box? You certainly wouldn't store such a thing in a cookie or pass it across the wire unencrypted right? Social security information is sensitive information and privacy zealots care very much how you handle their data. Primary keys are necessarily are closer to end users and harder to hide than regular fields. It just isn't the type of data to take a chance on.
Contender 3: E-mail
So e-mail is a pretty likely choice right? It's a relatively safe assumption that no two people share an e-mail (maybe). And anyone with a computer has one right? So there should be no uniqueness, privacy or optionality/applicability problems. But how about this:
Con 8: Accidental Denormalization. Do you have more than one e-mail address? Doesn't everyone? Imagine what a pain it would be if Evite only allowed you one e-mail address per person (ok, well if you didn't know it does allow you to consolidate accounts for those of us with multiple e-mail addresses). Even if your system only stores one e-mail address per person now, just think what a pain it would be to change the database to allow N e-mail addresses per person.
No. Wait. Really. Think about it...
Yea ... yuck.
Contender 4: Username
If your users log in with a username, that's a likely candidate for a primary key right? But what if they want to update their username (perhaps it was based on a last name that changed). This leads us to:
Con 9: Cascading Updates. If you have a natural key that might change you'll need to implement some type of cascading updates (whether your DBMS supports it or you write code by hand). In other words, change the username in the person table and you have to change the username foreign key in all child records of the invoices, comments, sales, certifications, defects, or whatever other tables you track. It may not happen often, but when it does it sure will wreak havoc on your indexes. Imagine rebuilding even 10% of your indexes at once because of one operation. It's just unnecessary.
Con 10: Varchar join speed. I left this to last because it applies to all of contenders thus far and is by far the most compelling argument against natural keys. Nine out of ten natural keys are varchar fields. Even an employee number as generated by another system may have a significant zero. It's a fact: joining across tables with varchars is always slower than joining across tables with integers. How much? According to Peter Zaitsev who runs a MySql performance blog it's 20% to 600% slower. And that's for one join. How many joins do you think comprise an average user interaction? Five? Ten? Twenty? It could very likely make a significant difference to your end user.
And The Winner Is
So surrogate keys win right? Well, let's review and see if any of the con's of natural key's apply to surrogate keys:
- Con 1: Primary key size - Surrogate keys generally don't have problems with index size since they're usually a single column of type int. That's about as small as it gets.
- Con 2: Foreign key size - They don't have foreign key or foreign index size problems either for the same reason as Con 1.
- Con 3: Asthetics - Well, it's an eye of the beholder type thing, but they certainly don't involve writing as much code as with compound natural keys.
- Con 4 & 5: Optionality & Applicability - Surrogate keys have no problems with people or things not wanting to or not being able to provide the data.
- Con 6: Uniqueness - They are 100% guaranteed to be unique. That's a relief.
- Con 7: Privacy - They have no privacy concerns should an unscrupulous person obtain them.
- Con 8: Accidental Denormalization - You can't accidentally denormalize non-business data.
- Con 9: Cascading Updates - Surrogate keys don't change, so no worries about how to cascade them on update.
- Con 10: Varchar join speed - They're generally int's, so they're generally as fast to join over as you can get.
For every natural key con I see a surrogate key pro. But not everyone agrees. Here are some arguments against them.
Disadvantage 1: Getting The Next Value
Some have argued that getting the next value for a surrogate keys is a pain. Perhaps that's true in Oracle with its sequences, but generally it just takes a couple minutes research, or you can use ORM tools to hide the details for you.
Disadvantage 2: Users Don't Understand Them
One argument I uncovered is if users were to perform ad-hoc queries on the database they wouldn't be able to understand how to use surrogate keys.
Bunk. Bunk, bunk, bunk. End users shouldn't be fiddling in databases any more than airline customers should be fiddling in airplane engines. And if they are savvy enough to try, then let them learn to perform joins like the pros do.
Disadvantage 3: Extra Joins
Suppose you have users table with a social security number natural primary key, and a phone number child table with social security as a foreign key.
If your user enters a social security number on a log in screen you could theoretically get their phone numbers without accessing the users table. In a surrogate key world you would have to look up the surrogate key in the person table before getting their phone numbers.
While this is true, I have found that with most CRUD applications there are few times when this scenario comes up. The vast majority of queries involve already known surrogate keys. So while this argument may be true in some situations, it just isn't true enough of the time to be significant.
Disadvantage 4: Extra Indexes
I find this to be the most persuasive argument against natural keys. If your person object would normally have a natural key on social security number, then in surrogate-world you should have a unique index on social security number in addition to your primary key index on the surrogate key. In other words, you now have two indexes instead of one. In fact, if you have N indexes per table in natural key world, you'll always have N + 1 indexes in surrogate key world.
While the additional indexes do indeed add indexes, which increase database size, and slow insert and update performance, you could offset some of that expense by converting your old natural key, social security number for example, to a clustered index.
Or you could just relax in the knowledge that there are pro's and con's to every architectural decision and for surrogate keys the pro's outweigh the con's.
Summary
So now if some well meaning DBA argues to use natural keys on your next project you should have ten arguments against them, which will double as ten arguments for surrogate keys, and you should be prepared with rebuttals for four arguments against surrogate keys. Whew, that was a lot. But I assure you, if you use surrogate keys today it will definitely make your life easier in the long run.
3 Comments
Leave a comment
0 TrackBacks
Listed below are links to blogs that reference this entry: Surrogate Keys - Data Modeling Mistake 2 of 10.
TrackBack URL for this entry: http://www.nearinfinity.com/mt/mt-tb.cgi/520





Hi Lee,
I disagree with many of the points raised. Ultimately your concerns are probably more pragmatic, but I wanted to weigh in.
Con 1: Primary key size
=========================
The surrogate key wastes space in this example. An index will be created to enforce the uniqueness of { first name, last name, address line 1 }. Total # of indexes and columns are 1 and 3. Now, add a surrogate key and those values become 2 and 4. [MYSQL-UIDX, PGSQL-UIDX, ORA-UIDX, SQLSVR-UIDX]
Con 2: Foreign key size
=========================
Foreign key values are read frequently and written infrequently. That makes them excellent candidates for indexing. I think we agree on that point. [AT-FKI, SQLSVR-FKI]. I disagree in general since worrying about index sizes is premature optimization, especially in large projects with dedicated DBAs. [AT-SK] has lots of experiments on this topic.
Con 3: Asthetics
=========================
Aesthetics are personal. I *hate* conflating surrogate keys with otherwise uniquely storable data. It smells like abusing an RDBMS as an OODBMS.
Con 4: Optionality
Con 5: Applicability
Con 6: Uniqueness
Con 7: Privacy
=========================
These are tied to the specific example of social security numbers, not the general issue of natural keys. #7 could be addressed by hashing the SSN before storing.
Con 8: Accidental Denormalization
=========================
Agreed that parsing email addresses is really hard. How many systems support plus addressing? [WK-PA]
Con 9: Cascading Updates
=========================
I didn't realize Oracle support for cascading updates was so weak. Go PostgreSQL and Microsoft, boos to Oracle and MySQL ! [MYSQL-CU, ORA-CU, PGSQL-CU, SQLSVR-CU]
Con 10: Varchar join speed
=========================
[AT-SK] has good examples here. I'm retreating to "premature optimization" again. This seems like sacrificing data integrity for issues which may be resolved by the storage vendors improving access times.
Disadvantage 3: Extra Joins
=========================
I think the foreign key end of the connection should point to phonenumber(socialsecuritynumber).
Disadvantage 4: Extra Indexes
=========================
A surrogate key value is arbitrary and orthogonal to the candidate keys. It is extra information which requires an index. The best fitting candidate key / natural key will probably have an index or per-application code to enforce the uniqueness.
I suppose I should stick my neck out too. It's easy to critique and hard to produce.
Surrogate key disadvantage #1: migration
=================================================
Migrating natural primary/foreign key values should be simple. The business values won't change in the new database and the relationships should be intact. Migrating a database deriving identity from sequence values will be tougher. At the very least you will need to manually update the new sequence values to match the old sequence values.
Sorry, I have put a lot more energy into arguing than making my own points. Adding arbitrary data doesn't make sense to me in this case. Especially this real-world obfuscated example:
CREATE TABLE foo (
id UNSIGNED INT PRIMARY KEY
, bar VARCHAR2(100) NULL
, baz INT NULL
, quux BLOB NULL
... NULL
);
References:
[AT-SK] http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:580828234131
[AT-FKI] http://asktom.oracle.com/tkyte/unindex/index.html
[MYSQL-UI] http://dev.mysql.com/doc/refman/5.0/en/constraint-primary-key.html
[MYSQL-CU] http://www.google.com/search?&q=site%3Amysql.com+sql+server+%22on+update+cascade%22
[ORA-UI] http://download.oracle.com/docs/html/A95915_01/sqcreind.htm
[ORA-CU] http://download.oracle.com/docs/cd/A84050_01/NT816CLI/DOC/nt.816/z26073/b.htm
[PGSQL-UI] http://www.postgresql.org/docs/8.2/static/indexes-unique.html
[PGSQL-CU] http://www.postgresql.org/docs/8.2/interactive/sql-createtable.html
[SQLSVR-CU] http://msdn.microsoft.com/msdnmag/issues/0800/sql2000/
[SQLSVR-FKI] http://technet.microsoft.com/en-us/library/ms175464.aspx
[SQLSVR-UI] http://msdn2.microsoft.com/en-us/library/ms187019.aspx
[WK-PA] http://en.wikipedia.org/wiki/E-mail_address#Plus_.28or_Minus.29_addressing
Trivia:
* The SQL standard allows NULL in unique indexes since NULL = NULL evaluates to false. [PGSQL-UI]
Also see http://weblogs.sqlteam.com/jeffs/archive/2007/08/23/composite_primary_keys.aspx
To sum this up and possibly over simplify...
Using surrogate keys or natural keys should be decided on a case by case situation.
Programmatically using a surrogate key is easier in a lot of situations. And it's still not hard to check for duplicates based on the natural key when using a surrogate key. Based on the need and situation a lot can be done on the 'front end' as opposed to the 'back end' to enforce uniqueness as well. With that said, referential integrity should always be enforced on the back end.
---
Another pro for Surrogate keys is that they are a great for change capture, when storing history. And of course you can still do change capture without using a surrogate key.
---
In the end I believe it depends on the situation,
because there are great arugments for using both. One should definitely not be biased and only always use one or the other.