Tagged Questions
The unique-index tag has no wiki summary.
7
votes
10answers
12k views
Short unique id in php
I want to create a unique id but uniqid() is giving something like '492607b0ee414'. What i would like is something similar to what tinyurl gives: '64k8ra'. The shorter, the better. The only ...
5
votes
5answers
404 views
5
votes
4answers
3k views
Rails uniqueness constraint and matching db unique index for null column
I have the following in my migration file
def self.up
create_table :payment_agreements do |t|
t.boolean :automatic, :default => true, :null => false
t.string ...
4
votes
2answers
500 views
Unique Constraint vs Unique Index
I’m interested in learning which technique developers prefer to use to enforce uniqueness in SQL Server: UNIQUE CONSTRAINT or UNIQUE INDEX. Given that there is little difference in the physical ...
3
votes
2answers
43 views
MySQL: Unique constrain multiple columns performance optimization
I see tons of questions about unique constrains on multiple questions but none that match what I am specifically looking for. If this is a duplicate of one, I apologies.
I have a table that is just:
...
3
votes
1answer
154 views
Should I specify both INDEX and UNIQUE INDEX?
On one of my PostgreSQL tables, I have a set of two fields that will be defined as being unique in the table, but will also both be used together when selecting data. Given this, do I only need to ...
3
votes
1answer
4k views
MySQL Views in Navicat - How to define 'primary key'?
Often when I define a View in Navicat I receive the following message:
xxx does not have a primary key. Updates to this table will be done using the following pseudo statement: UPDATE xxx SET ...
3
votes
4answers
2k views
How can I constrain multiple columns to prevent duplicates, but ignore null values?
Here's a little experiment I ran in an Oracle database (10g). Aside from (Oracle's) implementation convenience, I can't figure out why some insertions are accepted and others rejected.
create table ...
2
votes
3answers
35 views
INSERT INTO a table with UNIQUE INDEX for two columns
I have a simple tag_map table as
CREATE TABLE tag_map
(
tag_map_id mediumint(7) unsigned NOT NULL AUTO_INCREMENT,
post_id mediumint(7) unsigned REFERENCES posts(post_id),
tag_id mediumint(7) unsigned ...
2
votes
3answers
60 views
Fix duplicate entries in table
I just found out that a table on my production server (which holds approx. 35K records) contains 588 duplicate entries in an INT(11) column which has AUTO_INCREMENT.
The UNIQUE key is missing on that ...
2
votes
1answer
58 views
NHibernate Delete And Add In ChildCollection Of ParentClass
I have the following problem.
I have a parent class with a collection of child objects.
public class Parent{
int _id;
IList<Child> _childs = new List<Child>();
...
2
votes
1answer
223 views
MySQL Make a combination of columns unique
I have a table that stores comments users make about images on the site. The table is structured with four columns, the row_id, which is the primary key, the image_id, the user_id and the comment. ...
2
votes
4answers
177 views
UNIQUE argument for INDEX creation - what's for?
Why does INDEX creation statement have UNIQUE argument?
As I understand, the non-clustered index contains a bookmark, a pointer to a row, which should be unique to distinguish even non-unique rows,
...
2
votes
2answers
77 views
Problem with updating multiple rows which are in conflict with unique index
I am using Microsoft SQL Server and I have a master-detail scenario where I need to store the order of details. So in the Detail table I have ID, MasterID, Position and some other columns. There is ...
2
votes
3answers
3k views
Unable to create index because of duplicate that doesn't exist?
I'm getting an error running the following Transact-SQL command:
CREATE UNIQUE NONCLUSTERED INDEX IX_TopicShortName
ON DimMeasureTopic(TopicShortName)
The error is:
Msg 1505, Level 16, State 1, ...
2
votes
3answers
343 views
How wrong is it to have a unique and normal index on the same column?
I have the following table structure
CREATE TABLE `table` (
`id` int(11) NOT NULL auto_increment,
`date_expired` datetime NOT NULL,
`user_id` int(11) NOT NULL,
`foreign_id` int(11) NOT NULL,
...
1
vote
2answers
119 views
MySQL unique composite constraint not working
I've created a unique index like this:
ALTER TABLE items
ADD UNIQUE INDEX uni_item
(warehouse_id, width, height, depth, weight);
but I still can add duplicate items, why is this not working?
...
1
vote
2answers
48 views
Is there any way to make a UNIQUE index case insensitive in Mysql 5.1.x ?
If so - What must change in this table ?
CREATE TABLE contestants
(
idContestants int(10) unsigned NOT NULL AUTO_INCREMENT,
idEvent int(10) unsigned NOT NULL,
ContestantName ...
1
vote
1answer
152 views
Multiple unique columns but only unique combinations
I've run into a problem with MySQL unique indicies. What I want to do is have something like this:
user_id group_id
1 1
1 2
1 3
2 1
2 4
Where there can be ...
1
vote
1answer
186 views
Creating a Primary Key or Unique Index on a URL Column
Is it possible to create a primary key or unique index on an NVARCHAR(4000) column used to hold URLs? There appears to be a 900 byte limitation on unique indexes in SQL 2008.
1
vote
2answers
208 views
MyISAM unique keys being cut off at 64 bytes, causing collisions
I've got a MySQL table that stores urls as unique keys. I'm starting to get collisions on my keys because it seems the keys themselves are only the first 64 bytes (or characters if you prefer, its a ...
1
vote
2answers
94 views
Why do I have non-unique entries against a unique index? (PostgreSQL 9.0)
I have a unique index in my postgresql 9.0 db, based on a function. I have yet to make it fail with any manual tests I try, but I am seeing some duplicates in the db when I query it.
Check this out:
...
1
vote
5answers
207 views
How do you give your users a unique ID without using the primary key in the database?
If I have 10,000 users and the primary key is a unique ID going from 1 to 10,000, is there a way to give them all a unique ID such that the original primary key cannot be inferred from it?
For ...
1
vote
1answer
450 views
MySQL unique index by multiple fields
We have a special kind of table in our DB that stores the history of its changes in itself. So called "self-archived" table:
CREAT TABLE coverages (
id INT, # primary key, auto-increment
...
1
vote
2answers
405 views
MongoDB : ensureIndex not working on both single key and composite keys
From hours I'm trying to add bulk data in my locally setup MongoDB collection, all is set except unique index for a key or keys :(
I've used this:
ensureIndex({appid:1, userid:1}, {unique:true, ...
1
vote
2answers
51 views
Which approach is better for this scenario?
We have the following table:
CREATE TABLE [dbo].[CampaignCustomer](
[ID] [int] IDENTITY(1,1) NOT NULL,
[CampaignID] [int] NOT NULL,
[CustomerID] [int] NULL,
[CouponCode] ...
1
vote
2answers
1k views
Hibernate throws unique constraint violation exception while updating field part of unique key
Below is the use case:
I have a unique index defined on 3 columns say A,B,C. Assume the values in them are A1,B1,C1.
My java code is adding a new record say A1,B1,C1 but before this record is added, i ...
1
vote
2answers
126 views
Check if Database raises a particular exception
using Nhibernate;
I'm trying to insert several values a on table which has an unique index on some columns.
I'd like to know if a particular insert raises an exception for having violated the unique ...
1
vote
8answers
663 views
should nearly unique fields have indexes
I have a field in a database that is nearly unique: 98% of the time the values will be unique, but it may have a few duplicates. I won't be doing many searches on this field; say twice a month. The ...
0
votes
1answer
22 views
Rails: How to use the find method on an arbitrary index
I have created a model that has a string as a unique identifier.
I created a migration to add an index on that string and set it to be unique.
How can i access a database entry by just passing its ...
0
votes
0answers
17 views
#create and unique indexes -> race condition
Say I have a model with validates_uniqueness_of and an associated unique key in the DB.
POSTing to create is now a race.
Let's say I
don't want to fix this with javascript.
don't want to rescue ...
0
votes
2answers
58 views
MongoDB unique index does not work
I have a portion of simple code, that has to fail because of unique index constraint. But both of the objects are added to database and can be queried, in spite of unique index.
BasicDBObject ...
0
votes
2answers
23 views
how to set a column as unique indexer on Sqlite
I have 3 columns (_id, column1, column2) _id column has been set as autoincrement
In database there are some duplicate records, so I want to prevent duplicate records with setting column1 as unique ...
0
votes
2answers
49 views
Set unique id when instantiating object (with constructor)
I have a problem I need to solve regarding my Javascript code. When instantiating object (in this case adding new members) I want the members to get unique ids. Below is a simplified version of my ...
0
votes
1answer
60 views
Add unique index. SQLite3
I need to add a unique field index to an existing table. I made this row:
ALTER TABLE auth_user ADD UNIQUE INDEX (email);
The table and the field are already exist.
The error is:
Query Error: ...
0
votes
1answer
41 views
mysql utf8 encoding and unique keys
I am inporting data fom a user table (many users from many sites):
myisam default collation latin1_swedish....
Importing that data into a innodb table utf8_general
I have placed a unique key on the ...
0
votes
1answer
545 views
Symfony2 OneToOne relationship becomes either a Unique index or a foreign key?
I'm taking my first steps in Symfony2 entity relations.
I have an entity installation, which each has one meter, and one monitor.
This translates to a uni-directional relationship, which I defined as ...
0
votes
2answers
65 views
Create a Unique Integer from a String in PHP
I am using an API that returns items to me, and then storing those items in a MySQL database. However, the API does not return a unique ID for each item, so I risk storing the same item twice unless I ...
0
votes
4answers
73 views
Unique index in already existing database table
I am trying to add a new unique index on one of my database tables in SQL Server 2008. This is an existing table and the column where I want the unique index already has some duplicate values.
Can I ...
0
votes
0answers
64 views
Smart way to get unique index name from SqlException message?
Is there there any smart/best way to get the unique index name from SqlException message? like the following:
Cannot insert duplicate key row in object 'partners.Partner' with
unique index ...
0
votes
2answers
109 views
Denormalized many-to-many mapping
In SQL Server 2008 R2 I have a table with the following structure
(
Id INT NOT NULL PRIMARY KEY,
Left1 INT NOT NULL,
Left2 INT NULL,
Right1 NVARCHAR(128) NOT NULL,
Right2 ...
0
votes
3answers
316 views
MVC 2 Unique index validation
Is there a way to validate a property that should be unique on a model? For example, a user can create and edit a "Product", but they shouldn't be able to create a Product with an existing ...
0
votes
2answers
89 views
How do I set up an index on a pair of columns so that the values are tied together?
I have a table with id, external_id and country_code columns. I have two rules which I want the database to impose:
Each External ID can only appear once per country code
Each ID can only appear ...
0
votes
1answer
105 views
Mysql add mult-column index with repeated rows
Having the next table:
id -> incremental
field_1 -> foreignkey
field_2 -> foreignkey
I want to add the next index
ALTER TABLE my_table ADD unique index(field_1, field_2);
How ever I ...
0
votes
1answer
405 views
ActiveRecord association: create new association or reference existing if associated attributes match
I have two models below. They can be explained as follows:
A report has a report_detail (which determines start/end months). Many reports can have the same report detail, but no two report details ...
0
votes
1answer
225 views
SQL Server 2008: Collation ignored in unique index?
I've created a compound unique index on my table:
CREATE TABLE [dbo].[SearchIndexWord](
[ID] [int] IDENTITY(1,1) NOT NULL,
[CatalogID] [int] NOT NULL,
[Word] [nvarchar](100) NOT NULL,
...
0
votes
2answers
212 views
how to use UNIQUE index correctly?
i have 4 fields at DB.i set them become cant duplicate entry.They are:
1. Model Varchar(14) Unique
2. Serial varchar(8) Unique
3. Lot varchar(5) Unique
4. Line char(5) ...
0
votes
1answer
223 views
SQL Server unique index allowing duplicates
I am using SQL Server 2008, had a table with an id (numeric) column as the primary key. Also had a unique index on three varchar columns. I was able to add a row with the exact same set of the three ...