Tagged Questions

A guid (globally unique identifier) is a unique reference number used as an identifier in computer software

learn more… | top users | synonyms

288
votes
34answers
69k views

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 to run for hours, but it's not working. How can I make it work? BigInteger begin = new ...
249
votes
20answers
56k views

How to create a GUID / UUID in Javascript?

I'm trying to create globally-unique identifiers in Javascript. I'm not sure what routines are available on all browsers, how "random" and seeded the built-in random number generator is, etc.. The ...
80
votes
19answers
23k views

C#: Test if string is a guid without throwing exceptions?

i want to try to convert a string to a Guid, but i don't want to rely on catching exceptions ( for performance reasons - exceptions are expensive for usability reasons - the debugger pops up for ...
63
votes
2answers
16k views

How to create a GUID in Python

How do I create a GUID in Python that is platform independent? I hear there is a method using ActivePython on Windows but it's Windows only because it uses COM. Is there a method using plain Python?
63
votes
11answers
13k views

Is a GUID unique 100% of the time?

Is a GUID unique 100% of the time? Will it stay unique over multiple threads?
45
votes
8answers
11k views

Advantages and disadvantages of GUID / UUID database keys

I've worked on a number of database systems in the past where moving entries between databases would have been made a lot easier if all the database keys had been GUID / UUID values. I've considered ...
36
votes
3answers
26k views

What is the string length of a Guid?

I want to create a varchar folumn in SQL should contain N'guid' while guid is a generated Guid by .net (Guid.NewGuid). What is the length of the varchar I should expect from a Guid? is it a static ...
34
votes
4answers
20k views

How to create a GUID/UUID using the iPhone SDK

I want to be able to create a GUID/UUID on the iPhone but I can't see any way to do it. The intention is to be able to create keys for distributed data, that are all unique. Do I need some ...
34
votes
5answers
4k views

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 UUID?
32
votes
7answers
2k views

Guid is all 0's (zeros)?

I'm testing out some WCF services that send objects with Guids back and forth. In my web app test code, I'm doing the following: var responseObject = proxy.CallService(new RequestObject { Data = ...
28
votes
15answers
9k views

Are GUID collisions possible?

I'm working on a database that uses a GUID for each user that uses the app it's tied to. Somehow, two users ended up with the same GUID. I know that microsoft uses an algorithm to generate a random ...
20
votes
6answers
12k views

How should I store GUID in MySQL tables?

Do I use varchar(36) or are there any better ways to do it?
19
votes
3answers
2k views

Guid == null should not be allowed by the compiler

Possible Duplicate: C# okay with comparing value types to null The behaviour described below is specific to .net-3.5 only Hello, I just ran across the most astonishing behavior in the ...
19
votes
7answers
7k views

What are the performance improvement of Sequential Guid over standard Guid?

Has someone ever measured performance of Sequential Guid vs. Standard Guid when used as Primary Keys inside a database?
18
votes
7answers
5k views

Is there a GUID.TryParse() in .NET 3.5?

UPDATE Guid.TryParse is available in .NET 4.0 END UPDATE Obviously there is no public GUID.TryParse() in .NET CLR 2.0. So, I was looking into regular expressions [aka googling around to find one] ...
18
votes
3answers
11k views

How to use Guids in C#?

This Code: Something = new Guid() is returning: 00000000-0000-0000-0000-000000000000 all the time and I can't tell why? So, why?
17
votes
9answers
1k views

Is it possible that GUIDs are generated with all the same characters in .NET? (e. g.: {11111111-1111-1111-1111-111111111111})

We use GUIDs extensively in our database design; Business Object properties provide Guid.Empty GUIDs for DB null values and null is always saved to the database if the value is Guid.Empty. Apart from ...
17
votes
9answers
2k views

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)? As I understand it, it is based off random numbers. However, it seems to me that given enough ...
16
votes
15answers
2k views

What exactly is GUID? Why and where I should use it?

What exactly is GUID? Why and where I should use it? I've seen references to GUID in a lot of places, and in wikipedia, but it is not very clear telling you where to use it. If someone could answer ...
15
votes
6answers
4k views

SQL Server - SCOPE_IDENTITY() for GUIDs?

Can anyone tell me if there is an equivalent of SCOPE_IDENTITY() when using GUIDs as a primary key in SQL Server? I don't want to create the GUID first and save as a variable as we're using ...
14
votes
2answers
7k views

Storing MySQL GUID/UUIDs

This is the best way I could come up with to convert a MySQL GUID/UUID generated by UUID() to a binary(16): UNHEX(REPLACE(UUID(),'-','')) And then storing it in a BINARY(16) Are there any ...
13
votes
8answers
744 views

Why do GUIDs and UUIDs have hyphens in them?

A colleague of mine was wondering why he couldn't just strip the hyphens from the uuid/guid before storing it. We couldn't work out what the hyphens were for... What is the reasoning behind them? ...
13
votes
7answers
8k views

How Random is System.Guid.NewGuid()?

I know this may sounds like a pointless question, but hear me out... I basically want to know if I can trust the GUID to generate a value which will be unique 100% of the time and impossible to ...
13
votes
6answers
12k views

How should I store a Guid in Oracle

I am coming from the SQL server world where we had uniqueidentifier. Is there an equivalent in oracle? This column will be frequently queried so performance is the key. I am generating the GUID in ...
12
votes
5answers
3k views

Sequential GUID in Linq-to-Sql?

I just read a blog post about NHibernate's ability to create a GUID from the system time (Guid.Comb), thus avoiding a good amount of database fragmentation. You could call it the client-side ...
12
votes
6answers
2k views

How easily can you guess a GUID that might be generated?

GUIDs get used a lot in creating session keys for web applications. I've always wondered about the safety of this practice. Since the GUID is generated based on information from the machine, and the ...
12
votes
5answers
910 views

Why are there dashes in a .NET GUID?

Why are there dashes in a .NET GUID? Are there dashes in most implementations of a GUID, or is it just a Microsoft thing? Signed, 741ecf77-9c92-4435-8e6b-85975bd13452
11
votes
3answers
429 views

How securely unguessable are GUIDs?

A while ago I worked on a web application where users could buy tickets. Due to the way our client's processes worked, what you effectively got as a result of your purchase was a URL with the ticket ...
11
votes
4answers
10k views

Create a GUID in Java [closed]

Possible Duplicate: Generate UUID in Java What are some of the best ways to create a GUID in Java?
11
votes
5answers
12k views

C# guid and SQL uniqueidentifier

I want to create a GUID and store it in the DB. In C# a guid can be created using Guid.NewGuid(). This creates a 128 bit integer. SQL Server has a uniqueidentifier column which holds a huge ...
11
votes
6answers
501 views

Strange 64/32-bit GUID issue under IIS7

One of my team has recently come across an interesting glitch in the matrix. If anyone can help explain this it'd be great. It is possibly a complicated to explain, so bear with me. We are building ...
10
votes
2answers
167 views

Are automatically generated GUIDs for types in .NET consistent?

Are the automatically generated GUIDs for C# Types consistent? For example, if I get a GUID for my interface, IFoo (typeof(IFoo).GUID), the first time a run the program, will I get that same GUID ...
10
votes
8answers
3k views

Is Guid the best identity datatype for Databases?

It is connected to BI and merging of data from different data sources and would make that process more smooth. And is there an optimal migration strategy from a database without Guids to a version ...
10
votes
2answers
1k views

Why is the GUID structure declared the way it is?

In rpc.h, the GUID structure is declared as follows: typedef struct _GUID { DWORD Data1; WORD Data2; WORD Data3; BYTE Data4[8]; } GUID; I understand Data1, Data2, and Data3. ...
10
votes
5answers
1k views

What are the options for generating user friendly alpha numeric IDs (like business id, SKU)

Here are the requirements: Must be alphanumeric, 8-10 characters so that it is user friendly. These will be stored as unique keys in database. I am using Guids as primary keys so an option to use ...
9
votes
2answers
190 views

Correct response to “We're getting duplicate GUIDs!” [closed]

It's logical to use a GUID when it's the best choice for your problem (e.g. creating IDs in distributed disconnect clients for last centralised storage). People who haven't used GUIDs can be wary of ...
9
votes
4answers
327 views

Is a GUID a good key for (temporary) encryption?

I'm generating an encryption key to encrypt some sensitive data with the Rijndael (AES) encryption algoritm. I'm using a guid as key generator. Are these keys "strong" enough? Note: it is only ...
9
votes
3answers
654 views

Aggregate Function on Uniqueidentifier (GUID)

Let's say I have the following table: category | guid ---------+----------------------- A | 5BC2... A | 6A1C... B | 92A2... Basically, I want to do the following SQL: SELECT ...
9
votes
4answers
744 views

How to read a .NET Guid into a Java UUID

I need to communicate a Guid that was generated in .NET to a Java application. I use Guid.ToByteArray() to store it on disk as a byte[], then read it into Java and convert it to a UUID. For this ...
9
votes
3answers
280 views

What are the chances of getting the same GUID in 1 billion iterations?

I am working on a project where I need to generate approximately 1 billion GUIDs. I know GUIDs are not guaranteed to be unique but are unique almost all of the time. If I generated a billion GUIDs, ...
9
votes
3answers
775 views

How are .NET 4 GUIDs generated?

I am aware of the multitude of questions here as well as Raymond's excellent (as usual) post. However, since the algorithm to create GUIDs was changed apparently, I found it hard to get my hands on ...
9
votes
8answers
2k views

How Random is System.Guid.NewGuid()? (Take two)

Before you start marking this as a duplicate, read me out. The other question has a (most likely) incorrect accepted answer. I do not know how .NET generates its GUIDs, probably only Microsoft does, ...
9
votes
5answers
1k views

Is Guid considered a value type or reference type?

Guids are created using the new keyword which makes me think it's a reference type. Is this correct? Guid uid = new Guid(); Are Guids stored on the heap?
9
votes
3answers
4k views

guid to base64, for URL

Question: is there a better way to do that? VB.Net Function GuidToBase64(ByVal guid As Guid) As String Return Convert.ToBase64String(guid.ToByteArray).Replace("/", "-").Replace("+", ...
9
votes
5answers
7k views

How many characters are there in a GUID?

Using ASCII encoding, how many characters are there in a GUID? I'm interested in the Microsoft style, which includes the curly brackets and dashes.
9
votes
9answers
4k views

Should I get rid of clustered indexes on Guid columns

I am working on a database that usually uses GUIDs as primary keys. By default SQL Server places a clustered index on primary key columns. I understand that this is a silly idea for GUID columns, and ...
9
votes
6answers
3k views

Pros and cons of using md5 hash of URI as the primary key in a database

I'm building a database that will store information on a range of objects (such as scientific papers, specimens, DNA sequences, etc.) that all have a presence online and can be identified by a URL, or ...
8
votes
4answers
206 views

Anonymous Type with Linq and Guid

I have a simple table: ID | Value When I do this: var sequence = from c in valuesVault.GetTable() select new {RandomIDX = Guid.NewGuid(), c.ID, c.Value}; each element in the ...
8
votes
4answers
3k views

Generate a GUID in Oracle

Is it possible to auto-generate a GUID into an Insert statement? Also, what type of field should I use to store this GUID? Thanks!
8
votes
8answers
3k views

How does C# generate GUIDs?

How are GUIDs generated in C#?

1 2 3 4 5 13