Tagged Questions
The unique-constraint tag has no wiki summary.
20
votes
7answers
4k views
Unique Constraint in Entity Framework Code First
Question
Is it possible to define a unique constraint on a property using either the fluent syntax or an attribute? If not, what are the workarounds?
I have a user class with a primary key, but I ...
10
votes
3answers
4k views
How do you validate uniqueness of a pair of ids in Ruby on Rails?
Suppose the following DB migration in Ruby:
create_table :question_votes do |t|
t.integer :user_id
t.integer :question_id
t.integer :vote
t.timestamps
end
Suppose ...
7
votes
2answers
1k views
Entity Framework: How to properly handle exceptions that occur due to SQL constraints
I use Entity Framework to access my SQL data. I have some constraints in the database schema and I wonder how to handle exceptions that are caused by these constraints.
As example, I get the ...
7
votes
3answers
3k views
Unique constraint on multiple columns
I am using an oracle table and have created a unique constraint over four columns. Can these columns within the constraint have NULL in them?
6
votes
2answers
557 views
Is it possible to configure the Play Framework's CRUD module to respect @Column(unique=true) annotations?
I'm using Play's CRUD module to create a simple set of admin screens. One of my models is User and I want to enforce a unique constraint on the email field.
The code looks like this:
public class ...
6
votes
1answer
460 views
Unique constraint using data in multiple tables (SQL / SQLAlchemy)
A top class called Parametric is used to create objects which can have parameters associated with them:
class Parametric(object):
def __init__(self, name):
self.name = name
self.pars = []
class ...
6
votes
6answers
1k views
A Queue that ensure uniqueness of the elements?
I'm looking for a implementation of java.util.Queue or something in the Google collection who behave like a Queue, but also ensure that each element of the queue is unique. (all further insertion will ...
6
votes
1answer
2k views
How can I add constraints to an ADO.NET Entity?
I know how to mark a group of fields as primary key in ADO.NET entities but i haven't found a way to declare unique constraints or check constraints.
Is this feature missing on the designer or on the ...
6
votes
4answers
2k views
How to create a unique constraint just on the date part of a datetime?
I'm writing a very simple blog engine for own use (since every blog engine I encountered is too complex). I want to be able to uniquely identify each post by its URL which is something like ...
5
votes
2answers
118 views
Why is there no unique constraint in Google Appengine?
I have seen many articles and questions about how to implement a unique constraint in appengine, but I actually didn't found any explanation about why this feature is not present.
If appengine ...
5
votes
1answer
731 views
Entity data model, unique index
In my entity data model I have an entity with one property as the primary key and another property that will have unique values too, so I’d like to create a unique index on that other property. The ...
5
votes
5answers
404 views
5
votes
8answers
179 views
Are unique constraints on the DB necessary?
I've been wondering lately. Lets say we're doing a webapp with JSF+Spring+JPA/Hibernate (or well any other technologies) and lets say we have a "User" entity. We want the User to have a unique login. ...
5
votes
1answer
2k views
How to do multiple column UniqueConstraint in hbm?
Working on some legacy hibernate code.
How do I do the following with hbm.xml(hibernate mapping file) instead of with annotations?
@Table(name="users", uniqueConstraints = {
...
5
votes
7answers
305 views
UNIQUE Constraints in SQL (SQL Server)
Why are UNIQUE Constraints needed in database ?
Can you provide any examples ?
Primary Key is UNIQUE by default... Understandable as they are referred in other tables as Foreign keys... relation ...
4
votes
6answers
106 views
Checking sql unique value with constraint
I have a situation where a table has three columns ID, Value and status. For a distinct ID there should be only one status with value 1 and it should be allowed for ID to have more then one status ...
4
votes
8answers
1k views
Find or insert based on unique key with Hibernate
I'm trying to write a method that will return a Hibernate object based on a unique but non-primary key. If the entity already exists in the database I want to return it, but if it doesn't I want to ...
4
votes
3answers
1k views
Naming convention for unique constraint
Naming conventions are important, and primary key and foreign key have commonly used and obvious conventions (PK_Table and FK_Table_ReferencedTable, respectively). The IX_Table_Column naming for ...
4
votes
3answers
192 views
UNIQUE constraint controlled by a bit column
I have a table, something like
FieldsOnForms(
FieldID int (FK_Fields)
FormID int (FK_Forms)
isDeleted bit
)
The pair (FieldID,FormID) should be unique, BUT only if the row is not deleted ...
4
votes
1answer
416 views
Why is Fluent NHibernate ignoring my unique constraint on a component?
In my map I have:
Component(
x => x.ExposureKey,
m => {
m.Map(x => x.AsOfDate).Not.Nullable();
m.Map(x => x.ExposureId).Length(30).Not.Nullable();
}
...
4
votes
2answers
528 views
How to specify that a combination of columns should be a unique constraint using annotations?
I want to make sure that all rows in my table have a unique combination of two fields, and I want to specify this using annotations in my entity class. I have tried using a combination of @Table and ...
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 ...
4
votes
6answers
648 views
SQL can I have a “conditionally unique” constraint on a table?
I've had this come up a couple times in my career, and none of my local peers seems to be able to answer it. Say I have a table that has a "Description" field which is a candidate key, except that ...
4
votes
4answers
102 views
SQL Server: “Mostly-unique” index
In a table i want to ensure that only unique vales exist over the five-column key:
Timestamp Account RatingDate TripHistoryKey EventAction
========= ======= ========== ============== ===========
...
4
votes
2answers
455 views
Finding ghost constraint from Oracle DB
I had a constraint in a table
CREATE TABLE "USERSAPPLICATIONS" (
"USERID" NUMBER NOT NULL ,
"APPLICATIONNAME" VARCHAR2 (30) NOT NULL ,
CONSTRAINT "PK_USERSAPPLICATIONS" PRIMARY KEY ...
4
votes
2answers
702 views
Getting ORA-00001(unique constraint violated) when COMMITing?
We're getting a ORA-00001 (unique constraint violated) in a batch job. However, the error occurs when a COMMIT is issued, not at the time the offending record is inserted.
Questions:
How come that ...
4
votes
3answers
5k views
Hibernate - clearing a collection with all-delete-orphan and then adding to it causes ConstraintViolationException
I have these entities
class Foo{
Set<Bar> bars;
}
class Bar{
Foo parent;
String localIdentifier;
}
With this mapping (sorry, no annotations, I'm old fasioned):
<class ...
4
votes
8answers
4k views
how to delete duplicate entries in postgresql?
I have a problem where I have to add a unique constraint to an existing table. This is fine except that the table has millions of rows already, and many of the rows violate the unique constraint I ...
4
votes
1answer
598 views
I can't seem to get the XPATH right for XSD UNIQE Constraint
I've been trying to get the UNIQUE constraint placed on some attributes i have in a fairly basic XSD Schema. I'm using XMLSpy and i'm wanting to put a unique constraint around TEMPLATE.ID for my nodes ...
4
votes
5answers
4k views
How can I create a SQL unique constraint based on 2 columns?
I have a Table like this one:
|UserId | ContactID | ContactName
---------------------------------------
| 12456 | Ax759 | Joe Smith
| 12456 | Ax760 | Mary Smith
| 12458 | ...
4
votes
4answers
3k views
Handling NHibernate Exceptions
What's the best practice for handling exceptions in NHibernate?
I've got a SubjectRepository with the following:
public void Add(Subject subject)
{
using (ISession session = ...
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
3answers
83 views
Postgres UNIQUE CONSTRAINT for array
How to create a constraint on the uniqueness of all the values in the array like:
CREATE TABLE mytable
(
interface integer[2],
CONSTRAINT link_check UNIQUE (sort(interface))
)
my sort ...
3
votes
3answers
145 views
Unique constraint violation during insert: why? (Oracle)
I'm trying to create a new row in a table. There are two constraints on the table -- one is on the key field (DB_ID), the other constrains a value to be one of several the the field ENV. When I do ...
3
votes
2answers
73 views
Ensuring uniqueness of multiple large URL fields in MS SQL
I have a table with the following definition:
CREATE TABLE url_tracker (
id int not null identity(1, 1),
active bit not null,
install_date int not null,
partner_url nvarchar(512) not ...
3
votes
3answers
320 views
MySQL: making a column unique?
I have a table that is in production. I realize that some of the columns should be unique. Is it safe to go into phpMyAdmin and change those columns to make it unique?
ALTER TABLE `foo` ADD UNIQUE ( ...
3
votes
2answers
555 views
Django - save() update on duplicate key
I have little application which allows a user to rate a video.
The user can rate only once.
So I have defined the uniqueness on the model.
But he should be able change his rate.
So the save() should ...
3
votes
2answers
396 views
Hibernate Natural ID duplicate issue
I'm new to Hibernate and DBs in general, so pardon the elementary question.
I am working with the DIS protocol and specifically the Open-DIS implementation of DIS. In DIS, each EntityStatePdu ...
3
votes
3answers
206 views
MySQL UNIQUE Constraint with a condition
I'm trying to create a unique index constraint for two columns (id_1 and id_2) with the following condition:
If two different rows have the same value in the id_2 column, their values in the id_1 ...
3
votes
3answers
188 views
Updating database records with unique constraint
Given the following simple table structure (SQL Server 2008), I want to be able to maintain uniqueness of my numerical sequence column, but I want to be able to update that value for any given ...
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
2answers
758 views
Unique constraint not created in JPA
I have created the following entity bean, and specified two columns as being unique. Now my problem is that the table is created without the unique constraint, and no errors in the log.
Does anyone ...
3
votes
2answers
1k views
Catching constraint violations in JPA 2.0
Consider the following entity class, used with, for example, EclipseLink 2.0.2 - where the link attribute is not the primary key, but unique nontheless.
@Entity
public class Profile {
@Id
...
3
votes
1answer
179 views
how can i set up a uniqueness constraint in mysql for columns that can be null?
I know that in MySQL, UNIQUE constraits don't treat NULL values as equal. So if I have a unique constraint on ColumnX, then two separate rows can have values of NULL for ColumnX and this wouldn't ...
2
votes
4answers
87 views
MySQL won't allow VARCHAR as a Primary Key? [closed]
I'm attempting to create a table called Students, with only one field, student_name.
student_name should be a VARCHAR and a primary key, because I want to uniquely identify students by their name.
...
2
votes
1answer
62 views
Multi-Column Unique Constraint with web2py
It is possible to mark a particular column as unique=true.
What is the most correct way to handle multi-column unique constraints in web2py?
For example, say I have an exchange rate table. It could ...
2
votes
1answer
51 views
How to get the name of a unique constraint in postgresql?
I need to drop a unique constraint from a postgresql table, but I didn't give it a name in the schema. Does anybody know, how to get the name of such a constraint, or how to drop it?
2
votes
3answers
453 views
Error 2627 in SQL Server - Is it safe to assume?
I need to catch violation of UNIQUE constraints in a special way by a C# application I am developing. Is it safe to assume that Error 2627 will always correspond to a violation of this kind, so that I ...
2
votes
1answer
543 views
Extracting the configuration created by DbContext.OnModelCreating in IDatabaseInitializer
Can one access the configuration created during an implementation of DbContext.OnModelCreating in an implementation of IDatabaseInitializer.InitializeDatabase? Given an instance of DbContext, I am ...
2
votes
3answers
126 views
actual working of primary, foreign key and unique constraint , order/steps of their working
How do primary key , foreign key and unique constraints work? i mean in what sequence?
Like, when a child table has a FK, and a record is inserted into it , which doesn't exists in the parent table, ...