vote up -5 vote down star

Can you post a duplicate question title on Stackoverflow.com?

flag
Yes, but it will be quickly flagged as such... normally. I'm leaving this alone so you can delete it without a hit to your reputation though :) – Godeke Nov 6 '08 at 20:47
there's also no requirement for tags to make any sense, so i fixed them for you – Steven A. Lowe Nov 6 '08 at 20:50
I don't get it - is this an attempt to see if you can post an article with an identical title, or a legitimate question about GUID/UUID keys? If the former, I'm going to delete it. – Paul Tomblin Nov 6 '08 at 21:04
@Godeke - doesn't he deserve to take a rep hit, though, for posting senseless non-questions? – Erik Nov 6 '08 at 21:09

closed as not a real question by Paul Tomblin Nov 6 '08 at 21:04

4 Answers

vote up -4 vote down

I guess so

link|flag
vote up 2 vote down

Pros:

  • Will always be unique
  • You won't run into race conditions or queuing to get the last max id
  • Your code can generate the data's key before you actually insert the data (a speed benefit if you run those "what key was just generated" queries.
  • Prevents people from predicting the key for items, for example if your website pushes articles and it says article.php?id=123 then they can probably view an unpublished article by going to 124, but with GUIDs there is no order

Cons:

  • Might perform measurably slower (but not if you store them as CHARs, use a GUID, Hex or Binary datatype)
  • Can be a bit harder to debug & play in SQL as you'll have to copy & paste keys vs simply typing WHERE ID=7

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/

link|flag
vote up 0 vote down

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 NewSequentialID() in SQL Server 2005 rather than NewID(), of course assuming you are using SQL Server.

http://www.sqljunkies.ddj.com/Article/4067A1B1-C31C-4EAF-86C3-80513451FC03.scuk

link|flag
vote up 2 vote down

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.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.