Tagged Questions

Universally unique identifier

learn more… | top users | synonyms

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 ...
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?
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 ...
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?
23
votes
3answers
13k views

Generate UUID in Java

If I'm using Long uuid = UUID.randomUUID().getMostSignificantBits() how likely is it to get a collision. It cuts of the least significant bits, so there is a possibility that you run into a collision, ...
22
votes
6answers
3k views

what is the algorithm used to generate those little gravatar identicon images?

Naturally, one would suspect that the algorithm creates images that are: highly unlikely to produce the same identicon twice; and capable of ensuring that each identicon is sufficiently distinctive ...
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
2answers
8k views

PHP function to generate v4 UUID

So I've been doing some digging around and I've been trying to piece together a function that generates a valid v4 UUID in PHP. This is the closest I've been able to come. My knowledge in hex, ...
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 ...
17
votes
14answers
3k views

What's your opinion on using UUIDs as database row identifiers, particularly in web apps?

I've always preferred to use long integers as primary keys in databases, for simplicity and (assumed) speed. But when using a REST or Rails-like URL scheme for object instances, I'd then end up with ...
14
votes
13answers
4k views

When are you truly forced to use UUID as part of the design?

I don't really see the point of UUID. I know the probability of a collision is effectively nil, but effectively nil is not even close to impossible. Can somebody give an example where you have no ...
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
743 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
2answers
2k views

When should I use uuid.uuid1() vs. uuid.uuid4() in python?

I understand the differences between the two from the docs. uuid1(): Generate a UUID from a host ID, sequence number, and the current time uuid4(): Generate a random UUID. So uuid1 uses ...
11
votes
4answers
4k views

Generating a Hardware-ID on Windows

What is the best way to generate a unique hardware ID on Microsoft Windows with C++ that is not easily spoofable (with for example changing the MAC Address)?
10
votes
4answers
966 views

Collisions when generating UUIDs in Javascript

This relates to this question. I am using this answer to generate UUID in JavaScript: 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { var r = Math.random()*16|0, v = c == ...
10
votes
4answers
5k views

how good is java's UUID.randomUUID?

I know randomized UUID have very very very low probability for collision in theory, but I am wondering, in practice, how good is java 5's randonUUID in terms of not having collision? Does anybody have ...
10
votes
8answers
8k views

How to get a unique computer identifier in Java (like disk id or motherboard id)

I'd like to get an id unique to a computer with Java, on Windows, MacOS and if possible, linux. It could be a disk UUID, motherboard s/n... Runtime.getRuntime().exec can be used (it is not an applet). ...
10
votes
4answers
1k views

How can I use UUIDs in SQLAlchemy?

Is there a way to define a column (primary key) as uuid in sqlalchemy if using postgresql?
9
votes
4answers
742 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
6answers
3k views

UUID performance in MySQL?

We're considering using UUID values as primary keys for our MySQL database. The data being inserted is generated from dozens, hundreds, or even thousands of remote computers and being inserted at a ...
8
votes
5answers
5k views

Platform-independent GUID generation in C++?

What is the best way to programmatically generate a GUID or UUID in C++ without relying on a platform-specific tool? I am trying to make unique identifiers for objects in a simulation, but can't rely ...
6
votes
2answers
85 views

High density random strings in Javascript

I'm currently generating UUIDs in Javascript with this function (How to create a GUID / UUID in Javascript?): lucid.uuid = function() { return ...
6
votes
4answers
3k views

Problems mapping UUID in JPA/hibernate

According to the documentation, hibernate 3.6 should have support for the java.util.UUID type. But when I map it like: @Id protected UUID uuid; I get the following exception: Caused by: ...
6
votes
1answer
1k views

Using a UUID as a primary key in Django models (generic relations impact)

For a number of reasons^, I'd like to use a UUID as a primary key in some of my Django models. If I do so, will I still be able to use outside apps like "contrib.comments", "django-voting" or ...
6
votes
1answer
3k views

Example of UUID generation in c++

I'm quite a newbie in c++ and I want to generate just random UUID's, as it is just important for instances in my program to have unique identifiers. I looked into Boost UUID, but I can't manage to ...
6
votes
1answer
632 views

UUIDs in CouchDB

I am wondering about the format UUIDs are by default represented in CouchDB. While the RFC 4122 describes UUIDs like 550e8400-e29b-11d4-a716-446655440000, CouchDB uses continuously chars like ...
6
votes
1answer
2k views

UUID library for C?

I'm looking for a UUID library for programming in C, that has a reasonable probability of being installed (or at least installable by package manager) on most modern Linux desktops, and works with ...
6
votes
6answers
742 views

How to identify unique user?

Question How can you determine if a user is unique or not? I understand there are many ways to do this using cookies, but what about methods that don't use cookies? For example, go to Urban ...
6
votes
7answers
3k views

How to make unique short URL with Python?

How can I make unique URL in Python a la http://imgur.com/gM19g or http://tumblr.com/xzh3bi25y When using uuid from python I get a very large one. I want something shorter for URLs.
6
votes
4answers
10k views

Storing UUID as base64 String

I have been experimenting with using UUIDs as database keys. I want to take up the least amount of bytes as possible, while still keeping the UUID representation human readable. I think that I have ...
5
votes
3answers
75 views

Is there a way to generate a random UUID, which consists only of numbers?

Java's UUID class generates a random UUID. But this consists of alphabets and numbers. For some applications we need only numbers. Is there a way to generate random UUID that consists of only numbers ...
5
votes
1answer
99 views

Where do UUID namespaces come from?

The UUID specification defines 4 predefined namespaces which it describes as "potentially interesting" - meaning among other things, "if other people have generated UUIDs in this namespace you can ...
5
votes
3answers
261 views

Are Java random UUID's predictable?

I would like to use a cryptographically secure primary key for sensitive data in a database - this cannot be guessable/predictable and it cannot be generated by the database (I need the key before the ...
5
votes
3answers
215 views

UUID with the Play Framework

I'd like to use UUID instead of the regular id on my models. Can this be done with the play framework?
5
votes
3answers
431 views

Should I implement auto-incrementing in MongoDB?

I'm making the switch to MongoDB from MySQL. A familiar architecture to me for a very basic users table would have auto-incrementing of the uid. See Mongo's own documentation for this use case. I'm ...
5
votes
1answer
315 views

Is Oracle's SYS_GUID() UUID RFC 4122 compliant?

I wonder if Oracle's SYS_GUID() function returns a RFC 4122 compliant UUID. For example: SQL> select sys_guid() from dual; SYS_GUID() -------------------------------- ...
5
votes
2answers
2k views

Using Hibernate UUIDGenerator via annotations

I'm using my uuid as following: @Id @GeneratedValue(generator = "uuid") @GenericGenerator(name = "uuid", strategy = "uuid") @Column(name = "uuid", unique = true) private String uuid; but I'm ...
5
votes
4answers
147 views

Are UUIDs unique across different systems?

I'm wondering if UUIDs are unique even when they are generated on different systems, which may employ different algorithms. For instance, if you generated a bunch of UUIDs in MySQL, and .Net, would ...
5
votes
2answers
531 views

How get uuid of a device/partition in linux programatically?

I am very much new to Linux programming. My questions are: Is there any way to read the UUID of a device or partition in Linux programmatically? Is there any C/C++ API for user-space ...
5
votes
1answer
1k views

Generate UUID with GWT

Is there any way to generate UUID with GWT?
5
votes
2answers
580 views

Generate UUID for Cassandra in Python

Heh, I'm using cf.insert(uuid.uuid1().bytes_le, {'column1': 'val1'}) (pycassa) to create a TimeUUID for Cassandra, but getting the error InvalidRequestException: ...
5
votes
3answers
344 views

How do I identify a blank uniqueidentifier in SQL Server 2005?

I'm getting a uniqueidentifier into a Stored Procedure that looks like this "00000000-0000-0000-0000-000000000000". This seems like a simple thing, but how can identify that this is a blank ...
5
votes
3answers
5k views

How to generate a GUID in VBScript?

I want to generate GUID strings in VBScript. I know that there's no built-in function in VBScript for generating one. I don't want to use random-generated GUIDs. Maybe there is an ActiveX object that ...
5
votes
6answers
4k views

Is there a method to generate a standard 128bit GUID (UUID) on the Mac?

Is there a built in function equivalent to .NET's Guid.NewGuid(); in Cocoa? My desire is to produce a string along the lines of 550e8400-e29b-41d4-a716-446655440000 which represents a unique ...
5
votes
3answers
2k views

Generating a unique ID in PHP

I'm trying to generate a unique ID in php in order to store user-uploaded content on a FS without conflicts. I'm using php, and at the moment this little snippet is responsible for generating the ...
4
votes
2answers
69 views

Is python uuid1 sequential as timestamps?

Python docs states that uuid1 uses current time to form the uuid value. But I could not find a reference that ensures UUID1 is sequential. >>> import uuid >>> u1 = uuid.uuid1() ...
4
votes
4answers
57 views

Getting an Unique Identifier without Inserting

I'm looking for the best way to basically get a unique number (guaranteed, not some random string or current time in milliseconds & of a reasonable length about 8 characters) using MySQL (or other ...
4
votes
1answer
122 views

How to store UUID as int

I m having some issues here.. I am using the following code to generate the uuid in mine application. - (NSString *)GetUUID { CFUUIDRef theUUID = CFUUIDCreate(NULL); CFStringRef string = ...

1 2 3 4 5 8