Is it possible GUID to conflict?
Actually i am generating GUID from two different applications and merge it in other database.
So, GUID column to be unique, Is there any chance it to be conflict?
Is it possible GUID to conflict?
Actually i am generating GUID from two different applications and merge it in other database.
So, GUID column to be unique, Is there any chance it to be conflict?
That depends on how you created the Guid
s. If you use correct procedures (Guid.NewGuid()
in .NET), it should be so staggeringly unlikely that they collide that you don't need to worry about it, unless you have enough time to keep generating them that the sun expanding and destroying the earth is a more immediate concern. Planetary destruction can play havoc with the unique constraints on your database.
However, here's a Guid
: "000...0120" (all ... are zeros); here's another: "000...0120". In this case: definitely not unique.
?
– Andrew Sep 25 '13 at 06:54