Which one is the best practice and Why?
a) Type Table, Surrogate/Artificial Key
Foreign key is from user.type to type.id:

b) Type Table, Natural Key
Foreign key is from user.type to type.typeName:

|
Which one is the best practice and Why? a) Type Table, Surrogate/Artificial KeyForeign key is from b) Type Table, Natural KeyForeign key is from |
||||
|
|
|
I believe that in practice, using a natural key is rarely the best option. I would probably go for the surrogate key approach as in your first example. The following are the main disadvantages of the natural key approach:
|
|||||||
|
|
The first one is more future proof, because it allows you to change the string representing the type without updating the whole user table. In other words you use a surrogate key, an additional immutable identifier introduced for the sake of flexibility. |
||||
|
|
|
A good reason to use a surrogate key (instead of a natural key like name) is when the natural key isn't really a good choice in terms of uniqueness. In my lifetime i've known no fewer than 4 "Chris Smith"s. Person names are not unique. |
|||
|
|
|
I prefer to use the surrogate key. It is often people will identity and use the natural key which will be fine for a while, until they decide they want to change the value. Then problems start. |
|||
|
|
You should probably always use an ID number (that way if you change the type name, you don't need to update the user table) it also allows you to keep your datasize down, as a table full of INTs is much smaller than one full of 45 character varchars. |
|||
|
|
|
If typeName is a natural key, then it's probably the preferable option, because it won't require a join to get the value. You should only really use a surrogate key (id) when the name is likely to change. |
|||
|
|
|
Surrogate key for me too, please. The other might be easier when you need to bang out some code, but it will eventually be harder. Back in the day, my tech boss decided using an email addr as a primary key was a good idea. Needless to say, when people wanted to change their addresses it really sucked. |
|||
|
|
|
Use natural keys whenever they work. Names usually don't work. They are too mutable. If you are inventing your own data, you might as well invent a syntheic key. If you are building a database of data provided by other people or their software, analyze the source data to see how they identify things that need identification. If they are managing data at all well, they will have natural keys that work for the important stuff. For the unimportant stuff, suit yourself. |
|||
|
|
|
well i think surrgote key is helpful when you don't have any uniquely identified key whose value is related and meaningful as is to be its primary key... moreover surrgote key is easier to implement and less overhead to maintain. but on the other hand surrgote key is sometimes make extra cost by joining tables. think about 'User' ... I have
as the table structure. now consider that i want to take a track on many tables as who is inserting records... if i use but mind it, it takes some extra physical space as varchar is saved in foreign tables which takes extra bytes.. and ofcourse indexing has a significant performance issue where int performs better rather than varchar |
||||
|
|