UUID collision risk using different algorithms
Posted
by Diego Jancic
on Stack Overflow
See other posts from Stack Overflow
or by Diego Jancic
Published on 2010-06-14T14:24:06Z
Indexed on
2010/06/14
14:42 UTC
Read the original article
Hit count: 241
Hi Guys, I have a database where 2 (or maybe 3 or 4) different applications are inserting information. The new information has IDs of the type GUID/UUID, but each application is using a different algorithm to generate the IDs. For example, one is using the NHibernate's "guid.comb", other is using the SQLServer's NEWID(), other might want to use .NET's Guid.NewGuid() implementation.
Is there an above normal risk of ID collision or duplicates?
Thanks!
© Stack Overflow or respective owner