0
votes
2answers
46 views

How to deal with guid or uuid type primary key in Yii's urlManager instead of only digital type?

I'm trying to figure out how to pass the guid type primary key value in the HTTP GET method to the controller. I have changed my urlManager as follows: 'urlManager'=>array( ...
0
votes
1answer
171 views

In Windows, is there a difference between UuidFromString and CLSIDFromString?

I would just like to double-check which one is correct to use for internally generated GUIDs that bear no relation to COM classes. My suspicion is that it's UuidFromString, but I keep seeing code ...
0
votes
0answers
57 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
189 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 ...
1
vote
1answer
61 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: ...
3
votes
1answer
115 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
2answers
74 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
3answers
255 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 ...
0
votes
1answer
125 views

How to increment/decrement a (version 1) TimeUUID?

How can I implement a function increment(uuid) that given version 1 TimeUUID A produces a valid version 1 TimeUUID B where: B > A There exists NO C where B > C > A And the same for decrement(uuid) ...
0
votes
1answer
104 views

How to increment/decrement a random (type 4) UUID?

How can I implement a function increment(uuid) that given version 4 UUID A produces a valid version 4 UUID B where: B > A There exists NO C where B > C > A And the same for decrement(uuid) that ...
1
vote
0answers
228 views

Is Mysql UUID_SHORT() comparable to UUID()

A quick question or opinion if you will. I need to generate some UUID's for a database table. Auto incrementing keys won't cut it as I need the key to be unique across databases and systems also. ...
3
votes
0answers
202 views

Java / .NET implementation of deterministic GUID/UUID generation

I am trying to replicate the following .NET code in Java https://github.com/LogosBible/Logos.Utility/blob/master/src/Logos.Utility/GuidUtility.cs I have written equivalent code in Java but I get ...
1
vote
1answer
168 views

Refactoring Auto-increment ids to GUIDs in **SQL DB

Jeff and others have convinced me that GUIDs are preferable to auto-increment ids. I have a Postgres DB that is indexed by auto-increment ids so I'd like to "refactor" the indexes to UUIDs. Is there ...
0
votes
2answers
85 views

Practical method of renaming files for high volume shared media server PHP / mySQL

Ok I am in the midst of developing a shared system/service of sorts. Where people will be able to upload there own media to the server(s). I am using PHP and mySQL for the majority of the build, and ...
0
votes
2answers
1k views

Convert UUID 32-character hex string into a “YouTube-style” short id and back

I'm assigning all my MongoDB documents a GUID using uuid.uuid1(). I want a way I can derive an 11 character, unique, case-sensitive YouTube-like ID, such as 1_XmY09uRJ4 from uuid's resulting hex ...
0
votes
0answers
358 views

How does Amazon generate its order number?

Note: I have already read through older questions like What is the best format for a customer number, order number? , however my question is a little more specific. Generating pseudo-random numbers ...
4
votes
2answers
1k views

How to create a worldwide unique GUID/UUID system for Mongo with Python?

In the Mongo docs, it states the following: The _id field can be of any type; however, it must be unique. Thus you can use UUIDs in the _id field instead of BSON ObjectIds (BSON ObjectIds are ...
1
vote
1answer
127 views

Are Objective-C UUIDs compatible with .NET

Is a UUID (GUID) created using CFUUIDCreate in objective-c compatible with GUIDs created within the Microsoft .NET framework. i.e. if I build an iOS system that generates ids using CFUUIDCreate will ...
0
votes
1answer
343 views

GUID explanation - C++

I use a sample from windows to learn DirectShow, and in a class I have this code in the header file: struct __declspec(uuid("{71771540-2017-11cf-ae26-0020afd79767}")) CLSID_TextureRenderer; And ...
1
vote
2answers
429 views

GUID/UUID compatibility issue between .NET and Linux

In my c++ program, I am generating a uuid value using debian linux's uuid package, it's returning me an unsigned char array of size 16, which is of type uuid_t. Then I convert it to string and print ...
4
votes
2answers
1k views

UUID format: 8-4-4-4-12 - Why?

Why are UUID's presented in the format "8-4-4-4-12" (digits)? I've had a look around for the reason but can't find the decision that calls for it. Example of UUID formatted as hex string: ...
0
votes
3answers
113 views

Easy to remember guid

Is there a block of Java UUID that won't automatically generated? I would like to define an easy to remember guid inside of my code that will act as a constant. Something like a null?
5
votes
2answers
358 views

How can I generate a GUID in R?

How can I generate GUIDs and UUIDs in R? I would like to be able to generate GUIDs based on the hardware etc. of the machine running the rsession. As a fallback, however, I would be happy to create ...
1
vote
1answer
109 views

Can you make mongo default to generating _ids as strings?

I'd like for mongo to generate it's _ids as strings. They're much more useable when sending back and fourth to the client or using in other parts of the program. Right now I convert them to strings ...
2
votes
2answers
337 views

Random GUID in Java (A different format)

One of the components that I use needs to feed an XML into it. The component provider has not provided any documentation or the specs of the XML. I am trying to generate the XMLs by trial and error ...
1
vote
2answers
283 views

Which UUID/GUID generator to use with JBoss

I want to generate unique Ids as a key for multiple physically separated databases. I use JBoss and I wonder which implemetation/library is the way to go. I know java.util.UUID would be simple and ...
1
vote
1answer
234 views

Best way to track emails - UUID vs ID number

need to track 1 million email addresses within our organisation for marketing and customer response. It has been decided to develop in-house. having done a little research into what others are doing ...
0
votes
1answer
715 views

Can't manually assign id in rails 3.1

I'm trying to set up a model using UUIDs instead of auto-increment. Without bothering with the UUID part, here is what my code looks like: class CreateUsers < ActiveRecord::Migration def change ...
3
votes
2answers
2k views

What makes this pseudo-GUID generator better than math.random()?

I found the question here: How to create a GUID / UUID in Javascript? The answer provides the following JS: function S4() { return (((1+Math.random())*0x10000)|0).toString(16).substring(1); } ...
0
votes
1answer
214 views

Reading GUID as string from Sybase Table using JDBC

In my Sybase 12.0 ASE database, I have at table that contains a column defined as binary(16) and used to store GUIDS/UUIDs. When i run a select query using a SQL client + ansi SQL for that table, all ...
2
votes
1answer
188 views

Unguessable integer primary keys for MySQL

I'm working on a database that uses integers as primary keys for a number of tables. I'd like to make the primary keys relatively difficult to guess — they needn't be super-tight, just not ...
2
votes
1answer
870 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
1answer
97 views

Should I use Global ID's or find another solution to my Notification system?

So I have nearly finished my notification system, and just before I am about to implement reCAPTCHA, I test what happens if I spam the notifications. To give you some background on my notification ...
2
votes
2answers
2k views

How to generate a GUID in C?

I want to generate guids to insert into a SQLite database (i.e. no support from the db itself). However, I would like to have control over certain properties: Orderedness for generating increasing ...
4
votes
2answers
1k views

Should I use UUIDs as primary keys for Rails?

I want to use the Spine.js client-side framework, and it generates UUIDs as IDs for models, which can then be persisted to the server. It would be easiest if I just used the client-generated UUIDs for ...
1
vote
2answers
762 views

Alternatives to traditional algorithms for encoding UUIDS (e.g. Base32, Base62)

We need to convert huge numbers of UUIDS into xml-compatible strings. If we use a Base32 algorithm (which maps each 5 bits to one of 32 characters) this leads to 26 char strings, if we us a Base62 ...
1
vote
1answer
999 views

Problem with UUID and GUID

Please don't mark this as duplicate. I have gone through all posts on this topic but couldn't solve my problem. I have an application in J2ME that searches for bluetooth services with a particular ...
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 ...
0
votes
1answer
298 views

UUID or GUID in database as a primary key. when should I use it and when should I not use it?

I am designing the database for social web site. should I consider using UUID or GUID for primary key at all? or should I not worry about it until the site gains significant number of users, and ...
1
vote
1answer
137 views

How do you construct a GUID with a set prefix and zero-padded suffix?

Freebase's Python API uses GUIDs that have a set prefix and a zero-padded suffix: "guid":"#9202a8c04000641f8000000000211f52" (http://wiki.freebase.com/wiki/Guid) "Freebase guids are represented with ...
2
votes
3answers
1k views

Unique serial number in a java web application

I've been wondering what's the correct practice for generating unique ids? The thing is in my web app I'll have a plugin system, when a user registers a plugin I want to generate a unique serial ID ...
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

How to get 32 bits unique number in Java?

I need to generate an unique number of 32 bits in Java. I need to return the number as Java int, which is required by the interface. Can you please share some ideas on this? The number will be used ...
1
vote
2answers
2k views

default value of GUID in for a column in mysql

I want a column to default to a GUID, so if I am doing an insert and I don't explicitly set the value, I want it to default to a new GUID value. how can I do this?
17
votes
0answers
2k views

Why do GUIDs and UUIDs have hyphens in them? [duplicate]

Possible Duplicate: Why are there dashes in a .NET GUID? 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 ...
5
votes
3answers
2k views

How to generate unique 64 bits integers from Python?

I need to generate unique 64 bits integers from Python. I've checked out the UUID module. But the UUID it generates are 128 bits integers. So that wouldn't work. Do you know of any way to generate 64 ...
0
votes
5answers
2k views

How to generate a UUID of type long (to be consumed by a java program) in Python?

How do you generate UUID of type long (64 bits - to be consumed by a java program) using Python? I read about the UUID module. So I played with it a bit: >>> import uuid >>> ...
0
votes
4answers
520 views

Generating Order Numbers - Keep unique across multiple machines - Unique string seed

I'm attempting to create an order number for customers to use. I will have multiple machines that do not have access to the same database (so can't use primary keys and generate a unique ID). I ...
6
votes
2answers
3k views

UUID collision risk using different algorithms

I have a database where 2 (or maybe 3 or 4) different applications are inserting information. The new information has IDs of the type GUID/UUID, but each application is using a different algorithm to ...
2
votes
3answers
226 views

REST - get a random number GET or POST?

How should a random number generator properly be implemented in REST? GET RANDOM/ or.. POST RANDOM/ The server returns a different random number each time. I can see arguments for both ways. ...

1 2