When I am creating a new database table, what factors should I take into account for selecting the primary key's data type?
|
2
|
|
|
|
|
|
If using a numeric key, make sure the datatype is giong to be large enough to hold the number of rows you might expect the table to grow to. If using a guid, does the extra space needed to store the guid need to be considered? Will coding against guid PKs be a pain for developers or users of the application. If using composite keys, are you sure that the combined columns will always be unique? |
||
|
|
|
|
I usually always use an integer, but here's an interesting perspective. |
|||
|
|
|
|
I'm partial to using an generated integer key. If you expect the database to grow very large, you can go with bigint. Some people like to use guids. The pro there is that you can merge multiple instances of the database without altering any keys but the con is that performance can be affected. |
||
|
|
|
|
For a "natural" key, whatever datatype suits the column(s). Artifical (surrogate) keys are usually integers. |
||
|
|
|
|
It all depends. a) Are you fine having unique sequential numeric numbers as your primary key? If yes, then selecting UniqueIdentifier as your primary key will suffice. b) If your business demand is such that you need to have alpha numeric primary key, then you got to go for varchar or nvarchar. These are the two options I could think of. |
||
|
|
|
|
In most cases I use an identity int primary key, unless the scenario requires a lot of replication, in which case I may opt for a GUID. I (almost) never used meaningful keys. |
||
|
|
|
|
Whenever possible, try to use a primary key that is a natural key. For instance, if I had a table where I logged one record every day, the logdate would be a good primary key. Otherwise, if there is no natural key, just use int. If you think you will use more than 2 billion rows, use a bigint. Some people like to use GUIDs, which works well, as they are unique, and you will never run out of space. However, they are needlessly long, and hard to type in if you are just doing adhoc queries. |
||||||
|
|
|
Do not use a floating point numeric type, since floating point numbers cannot be properly compared for equality. |
||||||
|
|
|
Hi Aaron
I have used uniqueidentifiers (GUIDs) or incrementing integers so far. Cheers Matthias |
||
|
|
|
|
A great factor is how much data you're going to store. I work for a web analytics company, and we have LOADS of data. So a GUID primary key on our pageviews table would kill us, due to the size. A rule of thumb: For high performance, you should be able to store your entire index in memory. Guids could easily break this! |
||
|
|
|
|
Kim Trip goes in depth on indexing strategies in this podcast. |
||
|
|
|
|
I don't really like what they teach in school, that is using a 'natural key' (for example ISBN on a bookdatabase) or even having a primary key made up off 2 or more fields. I would never do that. So here's my little advice:
EDIT:
|
||||||||||
|
|
|
Numbers that have meaning in the real world are usually a bad idea, because every so often the real world changes the rules about how those numbers are used, in particular to allow duplicates, and then you've got a real mess on your hands. |
||
|
|
|
|
Use natural keys when they can be trusted. Some sources of natural keys can't be trusted. Years ago, the Social Security Administration used to occasionally mess up an assign the same SSN to two different people. Theyv'e probably fixed that by now. You can probably trust VINs for vehicles, and ISBNs for books (but not for pamphlets, which may not have an ISBN). If you use natural keys, the natural key will determine the datatype. If you can't trust any natural keys, create a synthetic key. I prefer integers for this purpose. Leave enough room for reasonable expansion. |
||||||
|
|
|
Unless you have an ultra-convenient natural key available, always use a synthetic (a.k.a. surrogate) key of a numeric type. Even if you do have a natural key available, you might want to consider using a synthetic key anyway and placing an additional unique index on your natural key. Consider what happened to higher-ed databases that used social security numbers as PKs when federal law changed, the costs of changing over to synthetic keys were enormous. Also, I have to disagree with the practice of naming every primary key the same, e.g. "id". This makes queries harder to understand, not easier. Primary keys should be named after the table. For example employee.employee_id, affiliate.affiliate_id, user.user_id, and so on. |
||
|
|
I usually go with a GUID column primary key for all tables (rowguid in mssql). What could be natural keys I make unique constraints. A typical example would be a produkt identification number that the user have to make up and ensure that is unique. If I need a sequence, like in a invoice i build a table to keep a lastnumber and a stored procedure to ensure serialized access. Or a Sequence in Oracle :-) I hate the "social security number" sample for natural keys as that number will never be alway awailable in a registration process. Resulting in a need for a scheme to generate dummy numbers. |
||
|
|
|
|
Sorry to do that, but I found that the answers I gave to related questions (you can check this and this) could apply to this one. I reshapped them a little bit... You will find many posts dealing with this issue, and each choice you'll make has its pros and cons. Arguments for these usually refer to relational database theory and database performance. On this subject, my point is very simple: surrogate primary keys ALLWAYS work, while Natural keys MIGHT NOT ALLWAYS work one of these days, and this for multiple reasons: field too short, rules change, etc. To this point, you've guessed here that I am basically a member of the uniqueIdentifier/surrogate primary key team, and even if I appreciate and understand arguments such as the ones presented here, I am still looking for the case where "natural" key is better than surrogate ... In addition to this, one of the most important but allways forgotten arguments in favor of this basic rule is related to code normalisation and productivity: each time I create a table, shall I lose time
My answer is no to all of these questions:
So I've been working for the last five years with a very basic rule: each table (let's call it 'myTable') has its first field called The major advantage is that you don't have to care animore about the use of Primary Key and/or Foreign Key within your code. Once you have the table name, you know the PK name and type. Once you know which links are implemented in your data model, you'll know the name of available foreign keys in the table. And if you still want to have your "Natural Key" somewhere in your table, I advise you to build it following a standard model such as
Where id_ is the prefix for primary key, and code_ is used for "natural" indexed field. Some would argue that the code_ field should be set as unique. This is true, and it can be easily managed either through DDL or external code. Note that many "natural" keys are calculated (invoice numbers), so they are already generated through code I am not sure that my rule is the best one. But it is a very efficient one! If e |
||||||
|
