The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
29 views

Unique key can use as primary key then why we keep another primary key?

CREATE TABLE IF NOT EXISTS `tbl_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) COLLATE latin1_general_ci NOT NULL, `passd` varchar(50) COLLATE latin1_general_ci NOT NULL, ...
1
vote
3answers
30 views

Unique element ID

I am having an issue with unique element id's? What am I doing wrong here? http://jsfiddle.net/KRRES/ HTML: <div id='gmapItemHolder'></div> <button ...
0
votes
1answer
38 views

Mysql Multiple Unique Keys Across Tables

I have a table like that: CREATE TABLE `Appointment` ( id INT NOT NULL AUTO_INCREMENT, user_id INT NOT NULL, doctor_slot_id INT NOT NULL, date DATE NOT NULL, PRIMARY KEY(id), ...
1
vote
3answers
34 views

Is a 64 bit random ID good enough for about 10 million entries?

I was inspired by this unique id code to generate a random 64 bit identifier. My question: will this be good enough for about 10 million entries? def self.generateId ...
0
votes
1answer
26 views

DB Unique key conflict

I have this problem, in which I cant add new record in database without getting unique key conflict. In my database, I have these 2 tables. Source and SourceType. And each source from Source is ...
0
votes
1answer
49 views

My sql update statement is not filling my column

I have two tables A and B. Table A has columns: LI PC (key) CI (key) DI TM V AI (no data in this column at this time) Table B has columns: PC (key) CI (key) CT CS CV AI I would like to update ...
1
vote
2answers
58 views

Alternative way to index a MySQL table for optimal queries?

I am confused as to how best to index a table in MySQL and need help on the best type of index construction to use. Currently I am using a unique-key index on this table but do not know if this is ...
0
votes
0answers
42 views

MySQL multi-column UNIQUE KEY only unique when 1 column is not DEFAULT value

Is it possible to create a multi-column UNIQUE KEY in MySQL, where it is only unique when 1 column is not the default value ie. UNIQUE KEY (`col1`, `col2` IS NOT DEFAULT) or UNIQUE KEY (`col1`, ...
0
votes
0answers
29 views

expiring link--how to stop

On my membership site we have a payment page called auth.php... it creates a unique token that times out after i think 30 mins or an hour. I want to stop this from happening, meaning i want that link ...
0
votes
3answers
344 views

How add unique key to existing table (with non uniques rows)

I want to add complex unique key to existing table. Key contains from 4 fields (user_id, game_id, date, time). But table have non unique rows. I understand that I can remove all duplicate dates and ...
2
votes
1answer
88 views

Hibernate - Autofill record ID on duplicate key

I am loading list of tenders from text files (one tender one file) source and I would like to store it into database. I have tables address_point, street, city and country where address_point is ...
0
votes
0answers
72 views

How could I iterate in a nested array if a different conditions are TRUE?

I have this input for my program: miRNA127 dvex589433 131 154 - 24 87.5 atcgtaacgtatctcccacactta 32 55 98 miRNA32 dvex320240 61 83 - 23 86.9565217391304 ...
0
votes
0answers
41 views

jQuery DataTables and unique key

When inserting a new row using jQuery DataTables or when updating data in a cell, how to make sure that a unique key constraint is not infringed? I would like to know how to perform this on the client ...
0
votes
1answer
25 views

Guarantee uniqueness for group of rows (Database)

I'm conceptualizing a database. I want a table with 3 columns (1 is the PK, the other 2 are FK) and I want to make so that there can only be one element with each combination of columns. Is the fact ...
0
votes
2answers
33 views

Is there a benefit/negative to using a username as a “primary/unique key” in a mongo database?

User1 { _id: "my_user1", name: "john smith", email: "blah@test.com, friends: [ "my_user2", "my_user3", "my_user4", ] } This would be the example. My site layout is ...
-1
votes
2answers
30 views

Add two indexes to the same field in MySql

I have a table like this: something a [INT] b [INT] c [INT] ...where a, b and c are separate Foreign Keys pointing to three different table.id. Since I want to make all regs be unique, and after ...
0
votes
0answers
63 views

How to get a unique key for two fields with Hibernate 4.1.9.Final?

I have 2 classes, StockNDate and Datapoint. StockNDate is an embedded entity that I've put into DataPoint. I'd like to set it up so that there can only be one Datapoint with one StockNDate. I tried ...
2
votes
1answer
115 views

php mktime() or uniqid()

I am using one of these to create a serial key. I would like to know md5(uniqid()) or md5(mktime()) better to be use? Which one has a less change to get a duplicated key?
-1
votes
1answer
79 views

How to generate a 64 bit key in php [closed]

I have been trying up with random number generators in php to generate keys for photos structure on the website I am building. I recently came to know that Facebook as well as Instagram fit there ...
0
votes
2answers
157 views

make text column as unique key

i want to make a table in MySQL server with mediumtext column as UNIQUE KEY CREATE TABLE `parts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` mediumtext NOT NULL, `display_status` ...
0
votes
2answers
89 views

Syntax error on UNIQUE KEY when creating a table

I am trying to create a tabe in a database using the code below. However, it's not working, and I can't figure out why. The error being generated is a syntax error on 'UNIQUE KEY ID (ID)', but ...
2
votes
2answers
70 views

Can I have 2 unique keys on 2 columns but not combination?

I have a table table userinfo ( user, email, address, primary key(user) ); In this table 'user' field is same as 'email' at the time of insertion. But user can change their ...
-1
votes
3answers
75 views

Map unique number to a unique string of 6 characters

I have a database table where every row has its unique ID (RowID). Is there a good way to convert this RowID to a unique key that is always 6 characters in length. Unique key characters can be ...
0
votes
2answers
210 views

Add field with random values and unique key, duplicate entries

I want to extend a mysql database users with a new unique field that gets filled with a random value on creation. Right now I have these commands, which create the field, add a random string and add ...
0
votes
2answers
123 views

MySQL unique colum string

Hy all, Currently i have this table in my DB: CREATE TABLE `twMCUserDB` ( `id` int(11) NOT NULL AUTO_INCREMENT, `mc_userName` text NOT NULL, `mc_userPass` text NOT NULL, `tw_userName` text ...
1
vote
1answer
71 views

Using unique element in XML scheme

I'm trying to use unique element to ensure uniqueness of one of the attributes. Attribute cisloStavu of element stav that I want to be unique has the same value for it's two instances, but validator ...
0
votes
4answers
92 views

Java Collection For Ensuring Uniqueness While Providing References

I have a structure like this: public class Foo { public int A ; public int B ; public int C ; } I need to add these to a collection one-by-one in such a way that I end up with no more ...
0
votes
1answer
92 views

spymemcached next unique key from cache

Is it possible to get auto generated unique key using spymemcached API? I would like to use something like this: String key = memcachedClient.add("Some data"); //key - auto generated next unused key ...
3
votes
1answer
884 views

jpa composite primary key and jointable with unique key

here are the sql tables: option primary key is name + value CREATE TABLE `option` ( id int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) NOT NULL, `value` varchar(45) NOT NULL, PRIMARY KEY ...
2
votes
2answers
92 views

Delete Duplicates in MYSQL using a text column for comparison

We've got a database table that need a multiple column unique key. However, one of those columns is TEXT and has lengths as long as 1000 chars (so varchar won't work either). Because of the TEXT ...
0
votes
0answers
103 views

OctCrypting for creating unique hash codes

Today I faced a problem like this:I have two DBs and I should copy some data from one to another keeping primary keys of first DB. But I should encrypt somehow some of this key(for temp records). At ...
0
votes
1answer
227 views

Create mysql unique key based on three columns and a specific value

I have a table with a unique index across two columns user_id and country_id I have added a new column deleted_at so I can delete rows whilst keeping the data. I would now like to update the unique ...
0
votes
3answers
278 views

MySQL - Make a pair of values unique

I have a table with two int values that are IDs. On their own these IDs can show up any number of times in the table, but together they should only ever appear once. Is there a way to make a pair of ...
0
votes
1answer
113 views

How do I make this field unique?

I am sorry if this question already exist. I searched but could not find the answer myself. I am creating a website, people need to register. But I have a specific field which people have to fill in. ...
0
votes
1answer
223 views

MySQL: UNIQUE text field using additional HASH field

In my MySQL DB I have a table defined like: CREATE TABLE `mytablex_cs` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `tag` varchar(6) COLLATE utf8_bin NOT NULL DEFAULT '', `value` text ...
0
votes
2answers
35 views

Add uniqueness to a MySQL index

There are many answers on how to remove the uniqueness of a key from MySQL, but nothing on how to add it. Is there any way to turn a KEY into a UNIQUE KEY?
2
votes
4answers
150 views

Howto Store 2 combined unique key in a HashMap?

I want to store values that are binded to a name + number. Like, (John,1) (RED) and (John,2) (BLUE) and (Elize,1) (GREEN) So how can i store a 2 keys that are combineded unique?
0
votes
3answers
1k views

how to generate unique id in php based on current data and time?

I need to generate a unique ID in php based on current date and time to keep a log of when i am running code. i.e. every time i run the code it should be able to generate a unique id based on current ...
0
votes
1answer
118 views

How do I generate unique IDs on the Mac/Linux without any external ruby dependencies (i.e. no gems)?

I'm trying to find a way to generate a unique system ID (HWID) without having to add any other gems first. In other words, I want someone who's running a brand new version of Mac/Linux to be able to ...
0
votes
2answers
349 views

MYSQL, Get only first rows with unique id from colum with multiple same value rows?

I have two tables user_photos and user_annons, I fetch from both using join. In the user_annons each row is always with a unique id, the Id column is auto increment, and the randomkey colum is also ...
1
vote
4answers
503 views

Get unique 8 digit number for a given string

Does anybody know any algorithm which generates unique 8 or 9 digits number for a given string? It would be better to have a php example also if not then at least the algorithm.
0
votes
1answer
89 views

Updating a field based on an existing unique field within a view

I've been poking at this for a few hours and I feel tunneled on this problem. This view should do two operations. The fist and working operation is creating the object with the submitted form data. ...
1
vote
0answers
157 views

Find an entity using its Unique Key

In my asp.net mvc 3 application, I have a generic Repository. I use the Find method of the DbSet class to find an entity by its Primary Key, like here: private DbSet<T> _dbSet; public T ...
3
votes
2answers
349 views

Django & South: Custom field methods are not executed when doing obj.save() in a data migration

In my Django model I have two fields, name (a regular CharField) and slug, a custom field that generates the slug based on a field name passed in the field definition, in this case I use name for ...
1
vote
1answer
484 views

MySQL Duplicate entry for key on UPDATE

I have a unique index on a column named label, but for some strange reason why I try and do an update like: UPDATE books SET label = 'foo bar', title = 'something new', modified = UTC_TIMESTAMP(); ...
2
votes
1answer
191 views

Hibernate - automatic and generic way to check if a defined unique key constraint exists?

Imagine a City to Postalcode relation mapping. (For simplicity using no foreign-keys) <class name="CityToPostalcode" table="city_to_postalcode" catalog="database"> <id name="id" ...
1
vote
1answer
71 views

Referencing a unique field in another table

I have a table that has a primary key and a unique key. From another table, is it possible to reference this unique key just the way Primary Key's and Foreign Keys are referenced & used ? Would ...
0
votes
3answers
351 views

Extract Unique Records from Datasets in MATLAB

Here is a not quite difficult question, however because of the fact that I am still learning MATLAB, I have to admire that I am struggling a bit. Well, let's assume that we have two datasets: Input1 ...
-6
votes
1answer
70 views

Unique IDs using PHP

Can any one tell me how can I create unique ID? For example: Account id 9845673333 Account id 9845673334 Account id 9845673335 Account id 9845673336
5
votes
3answers
10k views

MySql - Meaning of “PRIMARY KEY”, “UNIQUE KEY” and “KEY” when used together

Can anyone explain about the purpose of 'PRIMARY KEY', 'UNIQUE KEY' and 'KEY' if they put it together in a single CREATE TABLE statement in MySql ? CREATE TABLE IF NOT EXISTS `tmp` ( `id` int(11) ...

1 2 3 4