Top "Guid" questions

A GUID (Globally Unique IDentifier) is a unique reference number used as an identifier in computer software.

How to create a GUID / UUID

I'm trying to create globally-unique identifiers in JavaScript. I'm not sure what routines are available on all browsers, how "random" …

javascript guid uuid
How to create a GUID/UUID in Python

How do I create a GUID in Python that is platform independent? I hear there is a method using ActivePython …

python uuid guid uniqueidentifier
C# how to create a Guid value?

One field of our struct is Guid type. How to generate a valid value for it?

c# guid
Create a GUID in Java

What are some of the best ways to create a GUID in Java?

java guid
What is the string length of a GUID?

I want to create a varchar column in SQL that should contain N'guid' while guid is a generated GUID by .…

.net guid varchar sql-types string-length
SQL Server: converting UniqueIdentifier to string in a case statement

We have a log table that has a message column that sometimes has an exception stack trace. I have some …

sql-server guid case
Simple proof that GUID is not unique

I'd like to prove that a GUID is not unique in a simple test program. I expected the following code …

c# guid
Is there any difference between a GUID and a UUID?

I see these 2 acronyms thrown around, and I was wondering if there are any differences between a GUID and a …

guid uuid
How unique is UUID?

How safe is it to use UUID to uniquely identify something (I'm using it for files uploaded to the server)? …

guid uniqueidentifier uuid
Guid.NewGuid() vs. new Guid()

What's the difference between Guid.NewGuid() and new Guid()? Which one is preferred?

c# guid