In the context of relational databases, a foreign key is a referential constraint between two tables

learn more… | top users | synonyms

1
vote
0answers
28 views

Show foreign key relation message when deleting records in mvc3

I have a table Country.CountryID is a foreign key on another table Energy.When I try to delete a record in Country table,I should get a message showing the foreign key relation. That message should ...
0
votes
1answer
18 views

Issue with adding a one-to-one foreign-key connection to a RestKit mapping

I am trying to add a connection to a RestKit mapping but without success. My JSON is as follows: { parent: { token: "token" title: "title", description: "description", child_id: 1 ...
1
vote
1answer
21 views

timestamp is not updated on foreign key update

I am using MYSQL 5.1.38 and I have following tables: create table table1 ( col1 varchar(50) primary key not null, ts1 timestamp not null default current_timestamp on update current_timestamp ...
3
votes
4answers
25 views

Mysql errno 150 trying to create table with foreign key references

I'm trying to create a table in mysql with a foreign key reference, like this: In database A: CREATE TABLE replication ( id varchar(255) NOT NULL PRIMARY KEY, uid varchar(255) NOT NULL, value ...
0
votes
1answer
15 views

Create an association between one model that has two foreign_keys to another model

Struggling with this association, I have two models: Figure and Market, a market is where you can trade your toy figure with someone else. Figure class figure_id:integer name :string ...
0
votes
0answers
13 views

Cant create a foreign key relationship between two tables

I have two tables tbl_del_info(order_no,ship_addr,bill_addr) and tbl_order(order_no,user_date,order_status) in both the tables order_no is the primary key. I am using SQL server 2005. I am unable to ...
0
votes
2answers
31 views

SQL Query using foreign key relationships

I am learning MySQL and I am trying to make simple arithmetic in the query, I am trying to identify the department with the highest salary average and get the department name. But I have no idea how ...
1
vote
0answers
70 views

How to discover or deduce FK relationships when none were declared in the table definitions

At my work We have a Data management application used with firebird database which has 65 tables and 1.3 Million records. The person who developed the application and the Database is long gone. We are ...
0
votes
2answers
44 views

CakePHP to save relationship in other model

I have these models: class Prefix extends AppModel { public $displayField = 'prefix'; public $hasMany = array( 'State' => array( 'className' => 'State', ...
0
votes
1answer
36 views

Database Table with two related Foreign Keys, that may take wrong data

I am designing a database and my tables are as follows A company can have many departments,and a department belong to one company A company can have many Employees, and a employee belong to one ...
0
votes
0answers
9 views

Doctrine 2 orm:validate-schema fails because of constraint

I have a database with several one-to-many/many-to-one relationships. For example, I have table called Students, and a related table called StudentNotes. The StudentNotes table has a foreign key ...
1
vote
1answer
35 views

ServiceStack Service structure for predominantly read-only UI

I'm getting started with ServiceStack and I've got to say I'm very impressed with all it has under the bonnet and how easy it is to use! I am developing a predominantly read-only application with it. ...
0
votes
1answer
24 views

Foreign key or link between part of column selection

I have 3 tables in the following setup CREATE TABLE [dbo].[codevariable] ( [id] [int] NULL, [code] [nchar](10) NULL, [variable] [int] NULL ) ON [PRIMARY] CREATE TABLE [dbo].[proxy] ( ...
0
votes
1answer
9 views

MYSQL doesn't check for foriegn key exsistence

I am facing a strange problem here. TABLE 1: create table degree (degree_id varchar(6) primary key , degree_name varchar(32) unique key , degree_abbr varchar(3)); TABLE 2: create table course ...
0
votes
1answer
30 views

Inserting new records with one-to-many relationship in flask-sqlalchemy

I'm following the flask-sqlalchemy tutorial on declaring models regarding one-to-many relationship. The example code is as follows: class Person(db.Model): id = db.Column(db.Integer, ...
0
votes
1answer
46 views

Enforcing referential constraints on nullable foreign keys in Entity Framework 5

What is the best approach to making sure that a nullable foreign key value is checked for referential integrity if it is not null? I can add the logic to ValidateEntity, but this creates a need for a ...
-1
votes
0answers
40 views

django objects connected by foreign key [closed]

I have 3 classes: classA: name=CharField() classB: fkB=foreignKey(classA) .... some data classC: fkC=foreignKey(classA) objects=classB.objects.filter(fkB=fkC) I want to ...
1
vote
1answer
39 views

One-to-many relationship mapping: Cannot add or update a child row: a foreign key constraint fails

I'm making my mapping of a simple database structure, but can't figure out what is wrong. I got a one to many relationship between Company and User. One company can have many users. In the database ...
0
votes
0answers
12 views

Restrict the options available in foreign key choice by the value in a second column

I am using MySql 5.5.24, using InnoDB storage engine. I have configured pma db and am using it to enter some data in some backend database tables to configure my database. To make my problem more ...
0
votes
1answer
39 views

Load data in file and get a foreign key from an existing table

Hello there I have a Mysql Table for the Cantons (Switzerland we don't have states its canton here) I've loaded all Cantons into my table (Local data infile from swiss postalservice). Now I want to ...
0
votes
0answers
50 views

django postgresql insert or update on table violates foreign key constraint

I'm getting the error message: insert or update on table "quizzer_progress" violates foreign key constraint. DETAIL: Key (word_id)=(4700) is not present in table "quizzer_alone_words". but ...
0
votes
1answer
68 views

How to load a Foreign Key Column

Ok guys here is what I going through, I have a parent table called [dbo].[FileMetaData] and a child table called [dbo].[Ref_FileType] which is a reference to the Parent table. In the child table I ...
0
votes
1answer
29 views

When to use ManyToOne and ManyToMany relationships

The below is a database of colleges, and its ratings. The below is how I thought Each Class (Batch, ex: Batch of 2009) belongs to a Department Each Department (ex: department of pharmacy) belongs to ...
0
votes
1answer
32 views

Oracle foreign key

I need to add two constrains WORK_ADDRESS_ID and HOME_ADDRESS_ID in STAFF table references ADDRESS_ID in ADDRESS table, but it appears The TABLE operation was not successful for the following reason: ...
1
vote
2answers
60 views

How to store multiple items in a database column?

In my project the employee inserts a table number, selects all the items the customer orders and saves that to a database. I have three tables: Employee(empId, firstname, lastname) ...
2
votes
2answers
119 views

django models: how to overcome 'through' ManyToMany option limitation

I'm working on a app for allowing users to create and manage user groups by themselfs. The problem is I want to store which user added a new member to any group. These are my models at the moment: ...
0
votes
1answer
28 views

Modify foreign key to create a distributed database

I'm distributing a database but I have tow tables with foreign keys references to the other database in other server. I already search and found that I can't make a foreign key referring to a table in ...
0
votes
1answer
45 views

creating a foreign key in sqlite database

i need to create a foreign key to map my tables. Basically this foreign is a primary key of a table. but the insert statement is creting an issue. Its an SQLite database. the table with the primary ...
0
votes
2answers
49 views

Relationship (foreignkey) CakePhp

i have a problem creation the relation (foreign Key) between mi models (tables), i followed the cake documentation but doesn't work the relationship is Marca 1-N Modelos model Marca.php <?php ...
0
votes
1answer
27 views

Polymorphic Associations or something easier

This is my first post and I can't seem to find the answer anywhere.... I have a database that has multiple companies,each company has multiple locations. I'm running into problems trying to define ...
0
votes
1answer
45 views

SQL Server Assistance in creating a Foreign Key Relationship

I am creating a database for a project for class and we were shown how to create a foreign key relationship (using SQL Server 2012) by clicking the relationship button and adding the new relationship ...
0
votes
2answers
72 views

Another Foreign Key Issue - #1451 - Cannot delete or update a parent row: a foreign key constraint fails

When doing this in MySQL: UPDATE `client_therapist` SET `therapist_id` = 3 LIMIT 1 ; I get the following error: #1451 - Cannot delete or update a parent row: a foreign key constraint fails ...
0
votes
2answers
30 views

Automatically delete junction data along with DELETE of a record?

I have users, have offers, and a junction table users_offers. Is there a setup I can carry out with foreign key relations that can ensure that junction data will be automatically deleted when I ...
1
vote
1answer
59 views

Inserting relationships into a table which connects 3 tables with many to many relationships with SQLALchemy - python

Below you can see how some tables of my database are related. As you can see the table in the middle is connecting 3 tables with many-to-many relationships... One gene can be expressed in more ...
0
votes
1answer
45 views

How to I show a list of ForeignKey reverse lookups in the DJango admin interface?

I have a couple of models: class Customer(models.Model): customer_name = models.CharField(max_length=200) def __unicode__(self): return self.customer_name class Meta: ...
1
vote
1answer
27 views

JPA StackOverflowError when loading data in relationship tables

I'm trying to implement loading in three tables (the beginning of the problem with mapping) Products: @Entity @Table(name = "products") public class Product implements Serializable { @Id ...
2
votes
0answers
110 views

Backbone-relational hasmany best practices

I am new to Backbone-relational, I am not sure what is the right way to use HasMany. I have a Parent model which have many children (by "many" I mean thousands of children). In order to avoid ...
0
votes
1answer
46 views

SQL query involving foreign keys

I was reading through the SQL tutorial at http://www.w3schools.com/sql/sql_foreignkey.asp and was wondering how a query would be constructed if we had multiple tables referencing the same primary key. ...
0
votes
1answer
64 views

Database Relationship Transaction and Reference Table

Hi I have some questions regarding what i'll do with foreign data if deleted i have: a transaction table and it has foreign keys to user and branch so if a delete a user thats being referenced by ...
1
vote
1answer
31 views

How to remove primary key from a mysql table which is primary kay and foreign key in the same table as well.?

I have two different table having 20k entries each and mistakenly I have made summaryId as primary key and foreign key in the same table but now I want to remove the primary key constraint which is ...
1
vote
1answer
166 views

Sql: select data from two tables without repeating the first table values?

CREATE TABLE [dbo].[test]( [id] [bigint] IDENTITY(1,1) NOT NULL, [ctext] [varchar](12) NOT NULL, CONSTRAINT [PK_test] PRIMARY KEY CLUSTERED ( [id] ASC )) CREATE TABLE [dbo].[Comments]( [id] ...
0
votes
0answers
38 views

how to bind the entity through the additional table with a composite key

I have a problem with binding the entity through the additional table with a composite key: class Product @Entity public class Product implements Serializable { @Id @Column(name = ...
0
votes
1answer
46 views

Relations between Table and View using Microsoft SQL

Is there a natural option to establish a relationship between table and view or i should use trigger as a workaround to check that the data consistency? I have a lookup view (for some reason i need ...
1
vote
1answer
44 views

Database: Foreign Key Enforcement

I'm sure this could be answered but don't exactly know where. Preface: Ours is a billing solution. Application design is pretty simple, we create web store for businesses and provide credentials to ...
0
votes
0answers
53 views

Foreign key constraint vs. separate table (Relational DBs) for 1-to-n and n-to-1

Here's a design question. I'm very interested since there is a performance impact, however, do we have one when it comes to understandability or semantics? I've seen a lot of people - especially in ...
0
votes
0answers
37 views

Foreign keys cascade delete not working the way I imagine

I have a relational table which links two rows on the main table through foreign keys on the same column (delete cascade). This is the relations which I set on the relational table: ...
0
votes
1answer
72 views

Can't mass-assign protected attributes:: issue while building a nested attribute form

I've spent nearly all day on this particular issue and although there are other posts about it, I've not resolved my particular issue. I've tried following RailsCast #196 but still can't identify my ...
1
vote
1answer
180 views

Dynamics AX 2012 Foreign Key Constraints

Let's say I have two tables: Items Property1 (relates to PropertyName) Property2 (relates to PropertyName) Properties PropertyName (index, single key alternate) When making a normal relation ...
0
votes
0answers
33 views

EF CF - Setting foreign key does not set the entity

I have a Client and a Assignmnet class. The relationship is that a client can have several assignments. public class Assignment { public DateTime created { get; set; } public DateTime? ...
0
votes
0answers
74 views

How to Remove Table from Dataset when it has relations?

I have a Dataset and having 'n' number of tables .how can i delete the table from dataset if tables have Parent and Child relationship . Code: if (m_dsSet.Tables[TableName] != null) { ...

1 2 3 4 5 16