Unique-constraint is an index that sets one or multiple fields to be unique in a data entity

learn more… | top users | synonyms

1
vote
1answer
20 views

MySQL multicolumn unique indexing regardless of column

Simple table structure: id_1 int, id_2 int, This is a simple relational table creating a relationship between users. id_1 and id_2 will always be user_ids that exist in another table. I'm trying to ...
0
votes
0answers
12 views

Creating a unique constraint on a combination of columns that can be null in SQL

How can I add a unique constraint on a combination of columns, (few of which can be NULL) in SQL ? Suppose I have 4 columns A,B,C and D , I want the combination of these columns to be unique. Of ...
1
vote
1answer
40 views

Slugify string in Django

I have developed a form, where the user adds his/her first name and last name. For the username (a unique property), I've devised the following method: FirstName: harrY LastName: PottEr --> ...
0
votes
3answers
39 views

How to insert a row and ignore only UNIQUE contraint errors, without using SELECT

I have a table with a column that must have UNIQUE values (but it could be also a multiple-column UNIQUE index, the problem is the same). In my PHP script I have to insert a row in that table. I'm ...
1
vote
1answer
29 views

Oracle error when deferring constraint

I am trying to track down an occasional error from the query log: SQLSTATE[HY000]: General error: 1 OCIStmtExecute: ORA-00001: unique constraint (FOO.BAR) violated It seems to happen when the ...
1
vote
1answer
39 views

Check two unique values, sql

I have one table, contains two columns A and B with a unique value constraint. When the user enter new values A1 and B1 into database, i want to check that A1 doesn't exist in A column and B1 also ...
0
votes
1answer
33 views

Uniqueness validation with a has_many relationship

My model structure is as follows: class Client < ActiveRecord::Base has_many :charts end class Chart < ActiveRecord::Base belongs_to :client has_many :chart_data end class ChartDatum ...
0
votes
1answer
18 views

Bulk insert statement with unique constraint

I am writing a PHP script where I need to generate unique codes. These codes are generated by an admin user, 100K at a time. I have an algorithm that generates the code, but there is a very slight ...
0
votes
1answer
22 views

SQLAlchemy not producing proper SQL statement for multi column UniqueConstraints

Below are the two different attempts I have made in trying to achieve a multi-column unique constraint in sqlalchemy, both of which seems to have failed since a proper SQL statement is not being ...
0
votes
1answer
28 views

MySQL INSERT with two different UNIQUE constraints

I have a table created with: CREATE TABLE userSessions ( id INTEGER NOT NULL AUTO_INCREMENT, userId VARCHAR(50) NOT NULL, startTime TIMESTAMP NULL, endTime TIMESTAMP NULL, PRIMARY KEY (id), ...
0
votes
2answers
38 views

Create Unique Index One/Only/Single NULL

It seems that in SQL Server, unique indexes treat NULLs as 'just another value' instead of like in the rest of SQL where comparisons against NULL return NULL. Say you've got a table (t) with a unique ...
0
votes
1answer
20 views

MYSQL Change Values based on Table values (Constraint or Trigger?)

Quick few questions on MYSQL syntax, it seems extremely hard to find these answers on google. Is it possible to set a constraint or trigger so that when a value of a column reaches a certain point it ...
2
votes
1answer
54 views

Postgresql: Conditionally unique constraint

I'd like to add a constraint which enforces uniqueness on a column only in a portion of a table. ALTER TABLE stop ADD CONSTRAINT myc UNIQUE (col_a) WHERE (col_b is null); The WHERE part above is ...
0
votes
2answers
37 views

How to treat unique constraint violations in a data migration script?

Here I'm trying to migrate some data from a table column to a brand new table in which destination column have an unique constraint. Basically I'm trying to: INSERT INTO FooTable VALUES (SELECT ...
0
votes
1answer
92 views

Unique Constraint - Symfony2 and Doctrine2

I couldn't find documentation with this written in a way I can understand it, so I'm asking you for help. This question is related to Unique entity - Symfony2 I have a table called category with ...
0
votes
2answers
90 views

Symfony 2 UniqueEntity repositoryMethod fails on Update Entity

I'm working on some simple script, but can't wrap my head around this problem. So here it is. /** * Booking * @ORM\Table() * ...
0
votes
1answer
25 views

EF 5 / One to Zero-or-One with Unique Constraint

In my database I have three tables. TestVP, TestProject and TestPitch. The relationships are shown in this diagram. TestVP is the master table, TestProject and TestPitch when created a row is linked ...
1
vote
2answers
103 views

Spring Data JPA with @OneToOne relation fails to update already persisted entity

We got this setup: A document has a list of elements and these elements are subclasses of Element, in this example Link. A Link has a @OneToOne relation to Resource. Everything worked as long as we ...
0
votes
1answer
30 views

behavior of multi-column unique indexes with NULL values over multiple connections

I have a multi-column unique index in postgresql. Sometimes one of these column values will be NULL, and I'd like the unique index to treat NULL as just another value. So that these two rows are NOT ...
0
votes
0answers
126 views

NHibernate: one-to-many List with database unique constraint on ParentId-Index columns possible?

I tried to implement a parent-children relation in NHibernate, with a List as one-to-many collection. Table Parent ------------ int ID, nvarchar(64) Name, ... Table Child ----------- int ID, ...
1
vote
2answers
36 views

How to: Script Out Unique Constraint creation script

I have a list of Unique Constraints which creation scripts I would need. Is there an easy way to do this? (something like querying sp_help, sys.objects,..) Or would I need to do this manually for ...
-2
votes
2answers
59 views

How to query the look up table for unique values?

I have a recipe table that is structured like this: product2recipe id | productid | recipeid I want to eliminate insertion of duplicate values. Basically a recipe can contain 1 or more productid. ...
0
votes
2answers
72 views

Getting value from MySQL and loop over it with if

I have the following piece of code: ### Write the new userid to the sql database # Open database connection db = MySQLdb.connect("sql01.domain1.lan","webuserid","test","webuserid" ) # prepare a ...
1
vote
0answers
48 views

JDBC constraint exception details

I'm using JDBC to persist data to SQL Server and want to insert a new row into table that has a primary key, several foreign keys, and several uniqueness constraints on various columns. I am wondering ...
0
votes
1answer
19 views

Mysql Create Index Set As No Duplicates

I have a table p_places that has two columns that are both foriegn keys that references parent tables: mysql> create table p_places( -> user_id int not null, -> place_id int not ...
1
vote
2answers
158 views

How do I insert in LINQ to SQL when I have a foreign key and a unique constraint?

Suppose I have a simple database schema with a customers and orders table with a foreign key from orders to customers, and a unique key on customer name. Customers ----------- [CustomerID] INT NOT ...
1
vote
1answer
214 views

JPA (Hibernate) + Spring: Dealing with unique constraint violations

I have a entity A with a unique field and that field basically defines the entity, meaning it it is equal then then entity is also exactly the same. A second point is that it is lets say in no way ...
0
votes
2answers
116 views

Non nullable column with clustered unique index. Why need Primary Key?

In SQL Server, I have a non nullable column with a unique clustered index on it. If I make this column a Primary Key the exact same index is created automatically plus the column is recognized as a ...
0
votes
1answer
34 views

Prepare unique values for utf_unicode_ci in php

I need to read values from an ISO-8859-1 encoded file in PHP and use PDO to write them to a database table that's encoded utf8_unicode_ci and has a unique index. Sometimes the data is missing special ...
1
vote
2answers
151 views

how to insert nextval to trigger inside for loop

Hi here is a code for trigger and it have a for loop. When trigger is fired ( INSERT OR UPDATE)there's another table data must include it is MICL_SUP OPEN projMgrsCursor; LOOP ...
0
votes
1answer
80 views

HSQLDB UNIQUE constraint and SQL Array Type

I am developing with HSQLDB 2.2.9. HSQLDB is one of the RDBMS's out there that supports the SQL Array type and I want to use this capability to address some functionality in my database. I've been ...
1
vote
1answer
44 views

GORM - unique constraint seems to be ignored when using mongoDB

Here is the domain class: class User { String name String email static constraints = { name() email(unique: true) } } The email unique property is being ignored ...
0
votes
1answer
44 views

How do I locate duplicate records before I create a UNIQUE key?

I'm going to create a UNIQUE key in a large, old table (several hundred thousand rows) to enforce each row containing unique data. I can't just up and create the index though, because the table ...
0
votes
1answer
18 views

MySQL dropping unique pair

In a table of my database I made the unfortunate mistake of making a pair of fields unique when creating the database UNIQUE(A,B) I now want to remove this constraint. How can I do this in MySQL ...
0
votes
1answer
37 views

Unique constraint JayData

Is there a way to specify that a field has to be unique with JayData (same as SQL)? For example: $data.Entity.extend("Test", { Id: { type: "int", key: true, computed: true }, Name: { type: ...
0
votes
0answers
23 views

neo4j: java: can we force GraphDB NOT TO HAVE nodes with duplicate Node_Key? If yes how can we do it? [duplicate]

A sample code and situation related to this is discussed in following question: neo4j: java: error in indexHits.getSingle() due to multiple nodes returned for given search query I'm creating a ...
4
votes
1answer
204 views

INSERT INTO .. SELECT .. unique constraint violation

I'm running a stored procedure that selects values my temp table and inserts them into the database like so: INSERT INTO emails (EmailAddress) ( SELECT DISTINCT eit.EmailAddress ...
2
votes
1answer
144 views

unique constraint violated (ORA-00001) in concurrent insert

I have a procedure that is called from concurrent transactions: //Some actions here INSERT INTO table1 (table1_id, table1_val1, table1_val2, table1_val3) VALUES ...
0
votes
1answer
80 views

Unique constraint violation with single character insert

I have a unique constraint on a SQL server 2008 database table, with the constraint containing 4 columns. While entering in some test data, I unexpectedly received a unique constraint violation. For ...
0
votes
1answer
49 views

Primary Key on existing data

I need to delete existing PK from table and create new in new column. Because column for new PK was added later (after table creation) - we have nulls for old rows. Should I use UPDATE statement or ...
0
votes
2answers
46 views

one to many unique “set” oracle db

I am not sure how to create a one to many relationship, but restrict the many items as a "set" to each unique primary key. DB: Oracle 11g Example: PK Table: CUST(PK) 100 200 Valid FK Table Data: ...
2
votes
1answer
122 views

Django custom unique together constraint

I have a users share model something like below: class Share( models.Model ): sharer = models.ForeignKey(User, verbose_name=_("Sharer"), related_name='sharer') receiver = ...
0
votes
2answers
87 views

Update multiple records, with temporary key overlap

I've a table on DB with the following fields as PK: DOC_ID, SECTION_ID, SET_ID, CELL_ID. As you can deduce, this is referred to a set of Excel spreadsheets. In addition to those fields, I have a ...
0
votes
2answers
77 views

SQl Constraint UNIQUE based on other column value

Table A has columns 1 and 2. Column 1's value must be unique if column 2 is equal to x. ALTER TABLE A ADD UNIQUE (1) WHERE 2 = x. But this gives me a syntax error near WHERE. I tried to create an ...
0
votes
2answers
108 views

Child insertion fails in one to many hibernate mapping(because of a unique key in child) but parent still gets persisted

I have a one to many relationship between BookShelf and Book. The ISBN number in the book table is a unique field. Now when i try to insert a shelf with a set of books (with same isbn numbers )i get a ...
1
vote
2answers
71 views

how to prevent duplicate entry in table?

i have 1 table: table1: used_tag_id | post_id | tag_id user_tag_id is the primary key. There is multiple entries for post_id and tag_id. if i add post_id=1 and tag_id=1 it should add one time ...
0
votes
3answers
48 views

How to update in SQL to get distinct tuples / not to violate a unique constraint

I have a mapping table with a unique contraint on the tuple (c_id, t_id). Here's some sample data to illustrate the situation: id c_id t_id ---------------- 1 10 2 2 10 3 3 ...
0
votes
1answer
82 views

Oracle COLUMN_ID implicit index creation

How does Oracle use COLUMN_ID as found in USER_TAB_COLUMNS view? I just need to confirm that it does not use this internal column ordering while creating implicit indexes - such as when a primary key ...
0
votes
1answer
116 views

Validate unique username or email

I have two files, one contains reg_db class, in other i call object of reg_db. I want it to check user input and column in database, to make sure it will be only unique values. And if it's not unique ...
2
votes
3answers
633 views

MySQL delete multiple rows in one query conditions unique to each row

So I know in MySQL it's possible to insert multiple rows in one query like so: INSERT INTO table (col1,col2) VALUES (1,2),(3,4),(5,6) I would like to delete multiple rows in a similar way. I know ...

1 2 3 4 5 7