0
votes
3answers
59 views
how to delete duplicate entries in postgresql?
Hi, 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 …
1
vote
2answers
139 views
How to retrieve data which caused unique constraint violation (via Hibernate)?
Hi,
Is there a way to find out which record caused such a violation in Hibernate?
Normally you add objects to session and at the end you persist them. If such an error occurs it …
1
vote
2answers
78 views
How to make “No Duplicates” column in Sql Server 2008 ?
I have simple table in my SQL Server Database. This table contain two columns: ID int, Name nvarchar(50). The ID column is the primary key for my table.
I want the "Name" column t …
2
votes
2answers
62 views
Which dataset row is violating the DB unique constraint?
Hi,
I'm writing an application using c# 2005 and Sql Server 2000.
I have a table, with a unique constraint and, in the case I am concerned with, I have two users using a form whi …
1
vote
1answer
101 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 TEMP …
1
vote
2answers
882 views
Changing MySQL primary key when foreign key contraints exist
I have two already-existing tables which look (in part) roughly like this:
CREATE TABLE parent (
old_pk CHAR(8) NOT NULL PRIMARY KEY
) ENGINE=InnoDB;
CREATE TABLE child (
…
0
votes
0answers
128 views
To show Unique Constraint for two columns in physical ERD figure
This is answer is based on Greg's answer.
I would like to know how you can show the unique constraint for two columns in the following figure.
I have the table Tags
The SQL/DD …
0
votes
2answers
205 views
MySQL duplicate entry error when no duplicate exists
EDIT: I seem to get the error listed below on every insert no matter what data I try to insert. So maybe my table was corrupted or something? Anyway, here's my question:
I have …
1
vote
4answers
551 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 Smi …
2
votes
2answers
277 views
Does CouchDB support unqiue key constraint?
I come from a RDBMS background, and I have an application here which requires good scalability and low latency. I want to give CouchDB a try. However, I need to detect when a parti …
2
votes
2answers
301 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.timestamp …
0
votes
3answers
451 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 (ISessio …
1
vote
5answers
380 views
Uniqueness Constraints in MS Access
In a database I'm having to design for MS Access, I have a table called "Measurements", which stores certain measurement parameters (Measured Values, Std Deviation, etc.) - each ro …
0
votes
1answer
669 views
JPA @OneToMany Sets and unique contstaints
I have the following scenario:
I have a system full of users. There is a desire to run contests for users who log into the site over a week or so. Therefore I needed to create a …
0
votes
4answers
739 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 somet …
