-1
votes
2answers
28 views

In Oracle, how would I begin to create the tables when all the needed tables have both foreign and primary key constraint?

In Oracle, Lets say there are 3 tables with primary key and foreign key on each table. So, If i were to start creating the tables, how would i start. I started to create a first table with primary ...
0
votes
1answer
20 views

MySQL Constraints/Cascades: Will This Work?

I have a table - threads - and another - posts. Each thread is like a subject with the posts being replies. If a thread is deleted, all related posts need to be deleted. All posts have an id and a ...
0
votes
0answers
34 views

T-SQL Merge not warning about constraint violation

I have a trigger INSTEAD OF INSERT, UPDATE and I am using MERGE to merge update / insert the rows. There is a FK Constraint on one of the columns, so if I try to insert something violating this ...
0
votes
1answer
18 views

Sqlite - Insert if Record Exitsts

I know this is a really basic question, but I can't seem to make it work. I have a table that looks like so: TABLE entry ( "eID" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "pID" INTEGER, ...
0
votes
0answers
12 views

Restricting row deletion when dependant row (by cascading constraint) cannot be deleted

I have got 2 MySQL (example) tables: tree and leaf. CREATE TABLE tree ( id int NOT NULL, parent_id int, PRIMARY KEY (id), FOREIGN KEY (parent_id) REFERENCES tree (id) ON DELETE ...
0
votes
1answer
43 views

How can I see that it is indeed a foreign key and the parent table?

I have created a table which has a foreign key as follows: CREATE TABLE interests ( int_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, an_interest VARCHAR(50) NOT NULL, contact_id ...
1
vote
1answer
94 views

Why oracle trigger on delete is executed when foreign key is set to null

I have primary table AAAA and table BBBB which has FK to table AAAA. FK constraint is ON DELETE SET NULL. There is also trigger ON DELETE ON table BBBB. In this trigger there is delete from AAAA ...
0
votes
0answers
62 views

Reference a composite unique constraint as foreign key in another table

Below is my effort at doing it, but it wants me to have the same number of columns in the table referencing the key as there are in the table that contains the key (which defies the purpose of ...
0
votes
0answers
59 views

MySQL foreign key constraint with optional

i have these tables: "ua", "suppliers", "merchants" ... True, "ua" means "user auths" .. suppliers and merchants has a field named "uid" (unique identifier) I need a foreign key in "user auths" that ...
0
votes
1answer
81 views

Inserting multiple rows with same foreign key results in “constraint failed”

I have a class Contact and a class PhoneNumber. Inside PhoneNumber class, I have the attribute: @DatabaseField(foreign = true, columnName = "contact_id") private Contact mContact; and the ...
1
vote
1answer
92 views

Why is my propel cascade blocked by foreign key constraints?

I have the following structure in the databse: In my code I first create a Company, then a logbook, then a number of schedules, then a user, then a logbook responsibility. Sort of like this (not ...
2
votes
3answers
510 views

How to disable Constraints for all the tables and enable it?

I Have 60 Tables , and i want to drop 10 tables, where these 10 tables are Constraints(PK,FK) to other 20 tables, so while dropping these 10 tables i need to truncate or delete data of other 20 ...
-3
votes
1answer
38 views

Trying use foreign key in SQL and doesn't work [closed]

I tried using this command in SQL and it doesn't work with the foreign key. Any help please create table mine (mi_id number(10) not null, constraint mine_pk primary key (mi_id), ...
0
votes
2answers
145 views

Why is there a missing keyword error? [closed]

CREATE TABLE SORDER ( C_NO CHAR(4), P_NO CHAR(4), QUANTITY SMALLINT, PRIMARY KEY (C_NO, P_NO), CONSTRAINT CNO_FK FOREIGN KEY (C_NO) REFERENCES CUSTOMER ON DELETE RESTRICT, ...
0
votes
1answer
37 views

Foreign Key Inline Referencing Issue in SQL+

When referencing a foreign key inline I get an error message when writing it this way: C_ID NUMBER(6) CONSTRAINT ORDERS_C_ID_fk FOREIGN KEY (C_ID) REFERENCES customer(C_ID), The Error being: ERROR ...
1
vote
2answers
965 views

Two foreign keys reference one table - ON UPDATE SET NULL doesn't work

I've got two foreign keys in a table. Let's assume that table is called News and has foreign keys updatedById and createdById, both of which point to userId in table Users. Now I want to set to NULL ...
0
votes
0answers
39 views

Single table with internal relationship - Constraint fails when inserting deleting

I have a table "office" which has the following fields: id, int(10) unsigned auto_inc fk_office, int(10) unsigned, can be NULL address url email An office may depend from another (for ...
0
votes
3answers
230 views

Can't Add Foreign Key MySQL

I am using PHP MySQL and am trying to add a foreign key to a table called agents with a column called AreaID that should be the Foreign Key to the area Tables AreaID PK. I used this query and ...
1
vote
2answers
143 views

MYSQL, error 150

I have error # 150. I was looking on different forums, but all they said is that there must be same types for foreign key. And here's my code: USE `dbask`; set names utf8; /*users*/ CREATE TABLE ...
2
votes
1answer
107 views

Deleting from a MySQL table with foreign key constraints

I have two tables, with some data loaded in it and the two reference each other. Table B references the primary key of Table A. I manually attempt to delete some table rows from Table A that are ...
0
votes
1answer
58 views

Oracle - Can I declare a foreign key using a named constraint?

I am using Oracle Express Eddition 10g. The DDL below throws a DB error on the line with "REFERENCES TABLE_A_PK" "SQL Error: ORA-00942: table or view does not exist" CREATE TABLE TABLE_A ( ...
1
vote
3answers
111 views

Primary and foreign key relations in several tables

I have a question regarding SQL. I have the following SQL tables (Simplified for easy comprehension): Client(clientId INT PRIMARY KEY) Product (productId PRIMARY KEY) Order (orderId PRIMARY, ...
1
vote
1answer
83 views

MySQL Constraint - exactly one column out of a set must be non null?

I Have a MySql (InnoDb) table representing comments made about one of many types of objects. Because I'm using Concrete Table Inheritance, I have a different foreign key for each type of object ...
0
votes
2answers
41 views

Specify constraints in a MySQL table

I am in the process of designing the databases for my system. There are a lot of foreign key constraints. I was wondering whether I could get some advice, whether I should do which of the following: ...
1
vote
1answer
843 views

ON DELETE NO ACTION constraint in SQL Server database

What I want to do is when I delete a row from the parent table to keep the data in the child table. Meaning that if I have a table department, which is the parent table with two columns - depNo and ...
0
votes
1answer
41 views

RDBM MySQL Foregin Key Constraint Multiple Choice

im just going through some past tests for one of my classes and came against this question Consider the following foreign key declaration in a table X. FOREIGN KEY a REFERENCES Y (b) This ...
0
votes
1answer
205 views

Difference between `Constraint Symbol` and `index_name` for Foreign Keys

The MySQL Syntax for Adding a Foreign Key in the Alter Table Command is as follows: ADD [CONSTRAINT [symbol]] FOREIGN KEY [index_name] (index_col_name,...) What is the difference between the ...
0
votes
1answer
203 views

ON DUPLICATE KEY UPDATE causing foreign key constraint error

I searched the StackOverflow, but I couldn't find an answer to my specific question. Recently I have become a big fan of updating records with a list, using "INSERT INTO...ON DUPLICATE KEY UPDATE." ...
0
votes
3answers
111 views

MySQL Transactional delete and Java

I've got tables like this: Table A: `id | name` Table B: `id | A_id | ....` A_id is a foreign key to Table A, the Engine is InnoDB This is the code that fails: String[] ...
0
votes
2answers
30 views

Aquatic Star Database: Cannot add or update a child row: a foreign key constraint fails

im trying to add a foreign key to my database and it's not allowing me.. Alter table aquaticstar.schedule add foreign key (username) references aquaticstar.staff(username) i know theres a lot of ...
1
vote
1answer
142 views

Deleting from table with Same Table foreign key constraint

I'm trying to run this sql server statement: delete C from Company C, Company D where C.CompanyID > 1310 AND C.CompanyID != D.ParentID I'm getting the following sql error: The DELETE statement ...
1
vote
1answer
523 views

Entity Framework migration could not create foreign key constraint

I had 2 tables: public class Work { public int WorkId { get; set; } (...) } public class Check { public int CheckId { get; set; } (...) } Then I wanted to add a many to many ...
0
votes
2answers
336 views

Foreign key constraint details from information_schema

Almost all the information I had needed about a database, I could find in information_schema This time I needed to read details of all foreign keys in a database through single query I found every ...
0
votes
1answer
642 views

set null value in a foreign key column?

I have this table CREATE TABLE [dbo].[CityMaster]( [CityID] [int] NOT NULL, [City] [varchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [BranchId] [varchar](10) COLLATE ...
3
votes
4answers
3k views

How to remove foreign key constraint in sql server?

I want to remove foreign key from another table so i can insert values of my choice :) I am new in databases so please tell me correct sql query to drop or remove foreign key value.
13
votes
2answers
480 views

All our MySQL constraints have gone lowercase. What can cause this?

We have a camelCase naming convention on everything we do - from database tables to object properties, columns, database indexes and constraints. We have been working with these conventions for two ...
2
votes
2answers
190 views

How to keep foreign key relations consistent in a “diamond-shaped” system of relationships

Consider this situation: a Car is bought from a Salesperson. A Salesperson works at a Showroom (and at only one Showroom). A Showroom is affiliated to a Manufacturer, and only sells cars made by that ...
3
votes
3answers
291 views

Foreign key? :)

I have 3 tables: CREATE TABLE "Names" ( "Name" TEXT(20) NOT NULL, "Gender" TEXT(20) NOT NULL, PRIMARY KEY ("Name", "Gender") ); CREATE TABLE "Snames" ( "Sname" TEXT(20) NOT NULL, PRIMARY KEY ...
1
vote
1answer
153 views

How to find all references of a particular primary key in a sqlite table?

I have set PRAGMA foreign_keys=ON; I'm trying to delete some records in a sqlite3 table and it displays Error: constraint failed sqlite> delete from auth_user where id = 110; Error: constraint ...
2
votes
2answers
182 views

Is there a safe way to modify the table pg_constraint so as no more checking be done ( temporarily )?

So as to restore a database from a dump, I want to temporarily disable all the constraints in all the tables of my database, which content I have emptied ( postregsql 8.3). Is there a safe way to ...
1
vote
2answers
801 views

Foreign Key fails to create

I want a foreign key between 2 tables , so i try it like i always do. Now the issue i'm having is he fails to create , and by the looks of it it fails to create because there is already a key but ...
0
votes
1answer
160 views

primary keys and foreign keys conflict

this insert fails on my db - insert into tig_pairs (pkey, pval, uid) select 'schema-version', '4.0', uid from tig_users where (sha1_user_id = sha1(lower('db-properties'))); ERROR 1452 (23000): ...
0
votes
1answer
58 views

How can I add a constraint to this condition in MySQL?

My Table looks like this: CREATE TABLE IF NOT EXISTS `entry_title` ( `entry_title_id` int(11) NOT NULL AUTO_INCREMENT, `entry_id` int(11) NOT NULL, `accepted` tinyint(1) DEFAULT NULL, ...
7
votes
4answers
625 views

Django: “Soft” ForeignField without database integrity checks

I have a Django project that has multiple django "apps". One of them has models to represent data coming from an external source (I do not control this data). I want my other apps to be able to have ...
0
votes
1answer
59 views

how do I add unique constraint on an existing FK's parent?

consider these tables: leagues [ id,name ] teams [ id,name,leaguesid] FK: (leaguesid) -> (leagues.id) AK: (leaguesId) UNIQUE /teams can be in one league/ players [id,name] players_teams ...
0
votes
1answer
147 views

MySQL constraint using fixed “hard-coded” value - is this possible?

I have a table "comments", containing a basic auto-inc PK "id" field, and also a "type" field. At another tables, I want to have referential integrity applying a CONSTRAINT to comments.id AND ALSO the ...
0
votes
1answer
309 views

Oracle EBS r12 - modelling ERD with no FK' constraints in the database…transformation script?

As per subject I am looking for, for a way to model Oracle EBSr12 db in standard modelling tool (toad / sql dev data modeller etc). Problem is that Oracle doesn't use FKs in that database - therefore ...
1
vote
1answer
186 views

Oracle Backup and restore constraints to allow changing a column type

I need to change a column type in more than 200 tables I am following the next recipe: Disable all foreign constraints if the column is referenced by any FK Store columns in varray and Drop primary ...
0
votes
1answer
178 views

mysql foreign key violation on 2 levels of many-to-one relation

I have 3 tables, a Child, a Parent, and a GrandParent. Child has a column (parentId) pointing to Parent (many-to-one relationship). Parent has a column (grandParentId) pointing to GrandParent ...
2
votes
1answer
278 views

Creating Relationships between MySql tables

Im trying to create relationships between four tables in MySql: mainnodes (ID) subnodes (ID) tagrelationship (NODEID & TAGID) tag (ID) The table 'tagrelationship' references 'mainnodes' so when ...

1 2 3