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

0
votes
0answers
93 views

Django custom field for UUID using binary column type

Any django plugin for custom UUID Field using binary column type? (I found some using char type which could cost too much space in my project scenario.) or more detailed, I need an example of custom ...
0
votes
1answer
31 views

Mysql Dashboard overwriting client (UUID issues)

I am using the MySQL dashboard and I have 2 servers which are master/slave to each other. When I create the mysql agent, with a unique UUID, everything works fine. The agent connects to dashboard ...
0
votes
1answer
245 views

Hibernate mapping - Could not determine type for pg-uuid

I'm actually trying to use the Hibernate ORM with java annotations for the mapping. I use PostgreSQL for my database and its UUID type. As I have seen on others posts, when I want to map the UUID ...
0
votes
0answers
58 views

php: compare UUID and strings

The following code is not working: if ($entryByPhaseID["activity_ID"] == "50e5cde678bf94.62826693") { echo $entryByPhaseID["activity_ID"]. ...
4
votes
1answer
870 views

Generating a short UUID string using uuidtools In Rails

I have to generate a unique and random string which is to be stored in database. For doing this I have used the "uuidtools" gem. Then in my controller I have added the following line: require ...
2
votes
1answer
684 views

Android: Use UUID as primary key in SQLite

My app needs to get synced with other app users (on there own devices). I also want to support offline editing, that are synchronized to the other collaborative users when the user gets connected to ...
0
votes
0answers
131 views

How could I get the bluetooth UUIDs of my own android device?

I currently can fetchUuidsWithSdp of a remote device. (getUuids doesn't work, not sure why) But how could I get the UUIDs of my own android device? It is supposed that when I successfully execute ...
4
votes
2answers
148 views

postgresql UUID equivalent in coldFusion

I have a table session which is having sess_uuid column of type UUID in postgres , my problem is that I have to update session table from coldFusion cfQuery using query : UPDATE sessions SET ...
1
vote
1answer
1k views

Android Find the UUID of a specific bluetooth device

I'm starting to work on Bluetooth in Android recently. I want to build an application that can read the data recorded by a sensor through bluetooth. I have some sample code, but looks like I need ...
1
vote
1answer
236 views

Uuids and Redis

Antirez talks about memory optimisation with Hashes at length in this article - http://redis.io/topics/memory-optimization I have an app in production which has around 50 entities (tables) and a few ...
3
votes
0answers
137 views

How can I get the current Macbook's UUID from Objective-C?

Does the SDK provide an API for retrieving the current Macbook's UUID?
-1
votes
3answers
923 views

How to get only one NSUUID? [duplicate]

Possible Duplicate: iOS unique user identifier For my application I need the phones uuid. I know that I can get it with NSUUID *uuid = [NSUUID UUID]; But everytime I restart the app, I ...
1
vote
2answers
987 views

Android: How do bluetooth UUIDs work?

I've been running around SO and the internet at large for the past few hours trying to figure this out, and I'm confused. Basically, I don't understand what a bluetooth UUID denotes. Do UUIDs denote ...
1
vote
4answers
1k views

How to generate reliably a random UUID on Oracle?

This blog explains, that the output of sys_guid() is not random for every system: http://feuerthoughts.blogspot.de/2006/02/watch-out-for-sequential-oracle-guids.html Unfortunately I have to use such ...
0
votes
3answers
270 views

Android Id and its reliability

i want to generate Uuid for my app so i tried many methodes for this 1) Getting Serial number of device using android.os.Build.SERIAL(this returns "unknown" as result) 2)Dealing with device id(i ...
1
vote
2answers
327 views

Android and Java Uuid

I want to generate a uuid for my app i tried many things like wifi mac address , getting android id, serial number , creating pseudo uuid from device android.os.Build properties . i also came to ...
0
votes
0answers
58 views

Why is the UUID/GUID in cookie different to the one in my code? [duplicate]

Possible Duplicate: Accessing $_COOKIE immediately after setcookie() This is similar to the question noted, however refelcts not just the one referenced, but also why the b15 is ...
0
votes
1answer
203 views

How to generate a 24 character UUID? [duplicate]

Possible Duplicate: Example of UUID generation in c++ I need an algorithm for generating a 24 character UUID, but all I have been able to find is generators that produce the standard 32 ...
0
votes
1answer
62 views

How to create a UUID from both a “domain name” and an “object name”?

I must misunderstand either Python's uuid module, or the RFC for generating UUIDs How can you generate a UUID3 string using both a domain name and an object name? I see that "Version 3 UUIDs are ...
1
vote
1answer
80 views

Are there other factors, besides device and app vendor, that determine the identifierForVendor?

I noticed the identifierForVendor of my device changing for the app I am developing. I am pretty confident I didn't update the certificate for a while, so I wonder if there are other factors like app ...
0
votes
0answers
65 views

Identifying UUID

I am building a application where i will scan for all bluetooth devices and connect to the interested bluetooth device. I read that I need the UUID of the device so that i can connect to it. I am ...
1
vote
1answer
75 views

Using GUID's as folder names + splitting up

I want to use GUID's (uuid) for naming folders in huge file store. Each storage item gets his own folder and guid. The easiest way would be "x:\items\uuid\[Guid]..." example: ...
2
votes
1answer
246 views

Generate and store a unique id in MonoTouch

I am looking at transitioning an app of mine from standard iOS Objective C to C# using MonoTouch. In my Objective C code I am generating a unique identifier and saving it to NSUserDefaults to ...
3
votes
1answer
74 views

Python on Dotcloud Crashes on certain functions

so I'm running a flask python app on dotcloud, and I'm basically trying to hash a password (using hashlib.sha512; the salt is uuid.uuid4().bytes). user_dict['salt'] = uuid.uuid4().bytes ...
1
vote
0answers
145 views

Random UUID generation

Greetings fellow programmers, I am writing a simple bluetooth application to discover devices and connect with them. When I use the UUID "00001101-0000-1000-8000-00805F9B34FB" to connect with my ...
-1
votes
1answer
83 views

What is the number of characters in a python uuid (type 4)?

I'm building a database to hold a uuid generated by the python uuid4 method - however, the documentation doesn't mention how many chars the uuid is! I'm not overly familiar with uuids, so i don't ...
0
votes
3answers
155 views

Use Native Java UUID.getRandom() as Sharding key and as the _id?

I understand that with a write-heavy application, using the ObjectId is a really bad idea for a sharding key. However, would it be a good idea to use native *UUID.randomUUID() from Java as a Shard key ...
0
votes
1answer
168 views

syncdb = Error: One or more models did not validate

When I do manage.py syncdb I get: Error: One or more models did not validate: users.userprofile: "uuid": Primary key fields cannot have null=True. even though my class UserProfile(models.Model) ...
1
vote
1answer
172 views

how generate a constant Unique id from python

my application need use python generate a constant Unique id for run machine. the constant Unique id mean is : anytime in the same machine ,generate Unique id is always the SAME Unique id. ...
1
vote
1answer
403 views

What is the efficient way to store UUID generated in Java to Oracle DB? Will removing or not removing hyphen in the UUID be any use?

What is the efficient way to store UUID generated in Java to Oracle DB? Will removing or not removing hyphen in the UUID be any use - storage/performance? Will storing ...
3
votes
1answer
118 views

Why are the UUID standards complex and should I follow them?

RFC 4122 defines UUIDs in quite some detail. There are currently 5 variants defined, all 128-bit but varying in how the bits are derived. Why should one care about abiding by a particular variant; ...
1
vote
1answer
107 views

How do I generate UUID in PHPcassa

I have been searching google and stackoverflow for a tutorial on generating UUID using PHPcassa. I am a noob and I cant seem to figure this out. I am using the latest PHPcassa version, which is this ...
1
vote
2answers
75 views

Using Guid in link fails

I am building a MVC4 project with razor engine, although I don't know if that has relevance to my problem. I have a VendorBillController with a Submit(String poId) ActionResult. My link looks like ...
0
votes
2answers
334 views

remove dash of UUID generated directly on MySQL

I generate UUID using INSERT INTO tbl1 (key, val) VALUES (UUID(), :value) directly on MySQL using PDO. I don't have any idea how to remove those - (dashes) on MySQL side, on PHP side I can simply ...
0
votes
1answer
187 views

Way to create common name-based UUIDs in Java and PHP

Team Sof, I have a requirement to generate name-based UUIDs for my project. The catch is that FE uses PHP to generate identifiers based on a string, and BE uses Java to create those UUIDs based on ...
0
votes
1answer
316 views

How can i get the UUID of my IPHONE in an application?

I am developing an application with external databases. For this motive, I have to save an uuid the only identifier for every user who registers. This way, it will differ if the user is a new user or ...
0
votes
0answers
55 views

Difference between OSSP vs PECL-extension based UUIDs in PHP

Team sof, I wish to understand the following concepts, as its blocking my work. Please clarify my doubts. Problem : I am supposed to generate Name-based UUIDs and I generated then using OSSP-php ...
0
votes
3answers
275 views

GUID/ProgId/CLSID confusion

Trying to track down a COM problem, I'm debugging my code and seeming to see the same GUID represented different ways... I have a line in our code: class ...
3
votes
0answers
125 views

How do I auto-generate a GUID for a join table?

I'm using Hibernate 4.1.0.Final, JPA 2.0, and MySQL 5.5. I have the following entity: @GenericGenerator(name = "uuid-strategy", strategy = "uuid.hex") @Entity @Table(name = "cb_organization", ...
0
votes
1answer
1k views

UUID max character length

We are using UUID as primary key for out oracle DB, and trying to determine an appropriate max character length for the VARCHAR. Apparently this is 36 characters but we have noticed UUID'S generated ...
0
votes
1answer
732 views

How to Transfer Files using Bluetooth in android and PC or another android device

I am trying to transfer file from PC to android phone and then vice versa or b/w to android phones but got stuck. i know android programming at a expert level, i know the bluetooth API in android and ...
1
vote
0answers
83 views

Create uuid in vmdk without VboxManage

How can I add the uuid to the image of the hard disk *.vmdk? I have no rights install the kernel modules, so any command VBoxManage I get: WARNING: The vboxdrv kernel module is not loaded. ...
0
votes
1answer
370 views

Android listen for connections without UUID

I have written an Android game that uses Bluetooth to transfer data. I copied the code from the Bluetooth Chat application that comes with the ADK. My phone doesn't seem to be able to connect with ...
2
votes
1answer
112 views

Same ZMQ_IDENTITY for multiple Subcribers

I am building a zeromq PUB-SUB pattern with lots of subscribers to one publisher. I want to build durable Subscribers, so I found out about the ZMQ_IDENTITy socket-option. What should I take into ...
1
vote
0answers
127 views

install uuid-dev on heroku

I am quite new to dealing with dependencies on Linux and an application that I wish to install depends on Unix libraries. I have installed the application on my local Linux machine but when I tried to ...
0
votes
1answer
69 views

What is the correct way to format a mac address node for an RFC 4122 Version 1 UUID?

I'm trying to create a Version 1 UUID based on a mac address as defined on page 8 of RFC 4122 using only PHP. Another answer on this site recommended this implementation which seems to fit the bill. ...
4
votes
1answer
306 views

SQLAlchemy, UUIDs, Sharding, and AUTO_INCREMENT primary key… how to get them to work together?

I have a question pertaining to SQLAlchemy, database sharding, and UUIDs for you fine folks. I'm currently using MySQL in which I have a table of the form: CREATE TABLE foo ( added_id INT NOT ...
0
votes
1answer
69 views

Which version of UUID has 0 as the first character of 3rd part?

I have an UUID that looks like this: d30d7840-8f7f-012f-e231-1231390f85a2. Which version/type of UUID is this? I'm looking at the version bits (first character of 3rd part), but can't determine how ...
0
votes
0answers
77 views

phpCassa doesn't recognize UUID when passed as string

I'm having a problem with UUIDType in Cassandra. I'm using phpCassa. When I set the id as string I get an error saying: Notice: Trying to get property of non-object in ...
1
vote
1answer
99 views

create UUID that won't collide with other systems

I am using the Python standard uuid library. If my application eventually scales out to multiple servers, what should I be doing to ensure that the UUIDs don't collide, since the different systems ...

1 2 3 4 5 14