0
votes
2answers
47 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( ...
2
votes
1answer
541 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
1answer
954 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
0answers
289 views

mysql innodb primary key

Currently we have tables that has type 4 UUID(random) as primary key. Our application layer does a batch insert into DB. But still since the primary key is random, this will result in multiple disk ...
1
vote
1answer
271 views

Trying to use a UUID for a primary key. Getting stale data on SQLalchemy commit()

Starting SQLalchemy user here. I plan to use UUID's as the primary keys for my tables. In the tutorial I saw some code for using the native Python UUID type in ORM classes. Eureka! I can use ...
2
votes
1answer
622 views

Custom UUID as primary key

I have been reading on the advantages and disadvantages of using a UUID as a primar key in a database. The main argument I have been hearing against such a practice is that if they aren't generated ...
0
votes
1answer
477 views

PHP mysql_insert_id() for MySQL UUID() primary keys?

Is there some equivalent to PHP mysql_insert_id to fetch the last inserted UUID() primary key? (I always get 0. It works for auto_inc integers though)
1
vote
1answer
209 views

How to extract uuid inserted into a row as a primary key via a trigger

Consider the table: CREATE TABLE `information` ( `id` char(36) NOT NULL, `data` text NOT NULL, PRIMARY KEY (`id`) ) with the trigger: CREATE TRIGGER `information_uuid_ins_trg` BEFORE ...
1
vote
1answer
521 views

replication, uuid field as primary key, row based replication

I am looking about the best way to implement a multi-sites replication with MySDQL. As I am mainly a MS-SQL user, I feel quite unconfortable with MySQL replication terminology, and the multiple MySQL ...
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 ...
3
votes
3answers
781 views

UUID versus auto increment number for primary key

Why should I choose UUID over an auto increment number for my entity's primary key? What are the pros and cons?
1
vote
3answers
278 views

Primary keys, UUIDs, RecordKey tables, oh my

While working on a content management system, I've hit a bit of a wall. Coming back to my data model, I've noticed some issues that could become more prevalent with time. Namely, I want to maintain a ...
16
votes
1answer
4k 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 ...
0
votes
4answers
977 views

PK for web, autoincrement vs UUID style, wich is better and why?

What is the real diference between each one? I think auto inc is easy to hack vs uuid Uuid is slow than autoincrement in a query with to many records, but is there a huge difference in it?
4
votes
3answers
3k views

When would you use GUIDs as primary keys? [duplicate]

Possible Duplicate: Advantages and disadvantages of GUID / UUID database keys Are there any circumstances where it is essential to use GUIDs as primary keys in a SQL Server 2005/8 DB. For ...