A UUID (Universally Unique IDentifier) is an identifier that is created with the intent of being, as the name suggests, universally unique.

learn more… | top users | synonyms

667
votes
26answers
163k 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 ...
39
votes
5answers
22k 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, ...
80
votes
5answers
47k 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, ...
89
votes
6answers
44k views

How to create a GUID/UUID using the iPhone SDK

I want to be able to create a GUID/UUID on the iPhone and iPad. The intention is to be able to create keys for distributed data that are all unique. Is there a way to do this with the iOS SDK?
0
votes
2answers
426 views

How to set cookies for uuid

I have a website which generates a uuid every time the page is loaded/refreshed. I want to make it so that a certain value remains the same for a period of time using cookies. Does anyone know of a ...
38
votes
6answers
29k views

How should I store GUID in MySQL tables?

Do I use varchar(36) or are there any better ways to do it?
69
votes
7answers
20k 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 ...
17
votes
10answers
21k 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 ...
118
votes
3answers
32k 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?
50
votes
4answers
23k 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 ...
155
votes
4answers
45k 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?
31
votes
14answers
9k 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 ...
7
votes
2answers
3k views

How to store uuid as number?

Based on the answer of question, UUID performance in MySQL, the person who answers suggest to store UUID as a number and not as a string. I'm not so sure how it can be done. Anyone could suggest me ...
11
votes
5answers
3k 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 ...
21
votes
2answers
11k 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 ...
8
votes
3answers
27k views

How can I get the UUID of my Android phone in an application?

I'm looking for help to get the UUID of my Android phone. I have searched the net and found one potential solution but it is not working in the emulator. Here is the code: Class<?> c; try { ...
26
votes
7answers
11k 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 ...
2
votes
1answer
3k views

using UUID as primary key in rails and polymorph relationships

I'm creating a rails 3 application that will be decentralized and I need to use UUID as primary key for my tables, what would be the best gem, plugin for the Job. I also would like to know if it is ...
34
votes
9answers
7k 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 ...
39
votes
3answers
6k 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 == ...
16
votes
7answers
7k 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.
14
votes
5answers
4k views

How to Create Deterministic Guids

In our application we are creating Xml files with an attribute that has a Guid value. This value needed to be consistent between file upgrades. So even if everything else in the file changes, the guid ...
12
votes
6answers
7k 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)?
4
votes
2answers
13k views

Android Bluetooth - Can't connect out

I am developing an application which uses Bluetooth to connect to a device and send/receive data. I am doing all of my testing with a Nexus One phone. I have never been able to establish a SPP ...
8
votes
6answers
2k 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
3answers
10k views

Is Secure.ANDROID_ID unique for each device?

I am using this call: Secure.getString(getApplicationContext().getContentResolver(), Secure.ANDROID_ID); To get a UID for the device. I think I am getting the same ID from multiple devices though. ...
23
votes
5answers
20k 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 ...
26
votes
1answer
12k views

Example of UUID generation in c++

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 generate the UUID because I don't ...
14
votes
7answers
8k 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 ...
25
votes
13answers
2k 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
6
votes
2answers
11k views

Android: obtaining uuid of a bluetooth device

I need UUID of a bluetooth device to connect to it, but i don't know much about uuid. Is it specific to each device and how to know what is device's uuid. Can it be done using code?
7
votes
6answers
8k 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: ...
2
votes
1answer
901 views

Is COMB GUID a good idea with Rails 3.1 if I use GUIDs for primary keys?

I'm using Rails 3.1 with PostgreSQL 8.4. Let's assume I want/need to use GUID primary keys. One potential drawback is index fragmentation. In MS SQL, a recommended solution for that is to use special ...
1
vote
6answers
9k views

generating UUID but only for 8 characters

i want to generate UUID but of only 8 characters, as UUID is generated of 32 characters. Is it possible??
3
votes
1answer
2k views

Extract the time from a UUID v1 in python

I have some UUIDs that are being generated in my program at random, but I want to be able to extract the timestamp of the generated UUID for testing purposes. I noticed that using the fields accessor ...
5
votes
3answers
496 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 ...
2
votes
3answers
56 views

Generating Unique identifier using two strings

I would like to get an idea on how can we generate an unique identifier using two Strings. My requirement here is to generate an unique identifier for a particular document. For id generation, ...
2
votes
3answers
1k views

How secure are GUIDs in terms of predictability?

We're using .NET's Guid.NewGuid() to generate activation codes and API keys currently. I wonder if that poses a security problem since their algorithm is open. .NET Guid uses Win32 CoCreateGuid and I ...
1
vote
3answers
2k views

Whats the difference between a GUID and a UUID? [duplicate]

Possible Duplicate: Is there any difference between a GUID and a UUID? Whats the difference between a GUID and a UUID, and which should I use for true uniqueness? Update: What things do I ...
1
vote
1answer
4k views

INT, BIGINT or UUID/GUID in Oracle, DB2, Derby and HSQLDB?

For our next project, we're considering to switch to UUIDs as primary keys for database tables. The project will run on HSQLDB, Derby, DB2 and Oracle, maybe MySQL. Data will not have to be migrated ...
0
votes
0answers
258 views

fetchUuidWithSdp always giving the cached UUID

i am writing an app in which i have to do a service discovery on a selected device, but whenever i am doing a fetchUuid it is always giving me the cached UUIDs on the remote device. here is what i am ...
0
votes
4answers
932 views

How do I create a unique id for every new visitor?

my question is how do create a unique id (which will go at the end of the URL, e.g. http://example.com/?id=12345) for every unique visitor who visits my site. I am also wondering how to track the ...
38
votes
2answers
10k 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 ...
12
votes
2answers
13k views

How to create a UUID in php (without a external library) [duplicate]

Possible Duplicate: PHP function to generate v4 UUID I'm using uniqid() in PHP to generate a UUID however, the returned string is something like: 4cca63b0d4be4 I thought UUIDs are suppose ...
16
votes
1answer
5k 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 ...
13
votes
4answers
5k 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 ...
8
votes
1answer
7k views

UUID for app on iOS5 [duplicate]

Possible Duplicate: UIDevice uniqueIdentifier Deprecated - What To Do Now? As I expect you are aware of, the uniqueIdentifier in UIDevice is deprecated in iOS5. What I am looking for a ...
9
votes
2answers
924 views

Substitute for MySQL's UUID Version 1 function?

Context Web application, PHP 5, MySQL 5.0.91 The Problem I recently switched from using an auto-incremented integer to a UUID as a primary key for some of my tables. When generating UUID's via ...
4
votes
1answer
2k views

How to choose between UUIDs, autoincrement/sequence keys and sequence tables for database primary keys?

I'm looking at the pros and cons of these three primary methods of coming up with primary keys for database rows. So assuming I am using a database that supports more than one of these methods, is ...
4
votes
2answers
5k views

GUID to ByteArray

I just wrote this code to convert a GUID into a byte array. Can anyone shoot any holes in it or suggest something better? public static byte[] getGuidAsByteArray(){ UUID uuid = UUID.randomUUID(); ...

1 2 3