Can you post a duplicate question title on Stackoverflow.com?
|
|
|||||||||
|
closed as not a real question by Paul Tomblin Nov 6 '08 at 21:04 |
|
|
I guess so |
||
|
|
|
|
Pros:
Cons:
Just yesterday I skimmed a MySQL article about UUID usage pros & cons: http://www.mysqlperformanceblog.com/2007/03/13/to-uuid-or-not-to-uuid/ |
|||
|
|
|
|
Uniqueness is an obvious advantage. This makes it useful if you need to merge data from multiple data sources. It can greatly simplify database merge operations. Disadvantages are that they are a lot harder to type in, you have longer keys and they are slower. You can cut the overhead issue in half by constructing them with http://www.sqljunkies.ddj.com/Article/4067A1B1-C31C-4EAF-86C3-80513451FC03.scuk |
||
|
|
|
|
The primary advantage of GUIDs/UUIDs is that they are globally/universally unique, not just unique within the scope of a database table. The primary disadvantages of GUIDs/UUIDs is that they take up more space and perform slightly worse. They also aren't very human friendly if you ever expose them to humans. Normally, I think the choice boils down to what scope of uniqueness you need. Unique within a given database table or broader uniqueness. Another occasional advantage of GUIDs/UUIDs is that they can be generated client-side rather than inside the database. |
||
|
|
