Tagged Questions

1
vote
3answers
72 views

SQL Server Foreign Key Problem

Hi, I am trying to create a foreign key constraint consisting of an int column and a datetime column (both not null). I am getting the error "There are no primary or candidate keys in the referenced …
0
votes
3answers
70 views

Python MySQL: clean multiple foreign keys table

Hi Everybody, I am working with Python MySQL, and need to clean a table in my database that has 13328 rows. I can not make a simple drop table, because this table is child and also father of other …
1
vote
3answers
35 views

How to create Composite Key and how to refer it in other table as a foreign key

I have a table following table create table tblcountry ( unqid uniqueidentifier name varchar(100) isremoved bit ) I want to create primary key on basis of unqid + isremoved and in which …
0
votes
6answers
105 views

What is the difference between an Index and a Foreign Key?

I want to create a database with 3 tables. One for posts and one for tags and one that links posts to tags with the post_id and tag_id functioning as foreign key references. Can you explain what an …
1
vote
2answers
227 views

Entity Framework Updating with Related Entity

I'm using the EF to try to update an entity with ASP.NET. I'm creating an entity, setting it's properties then passing it back to the EF on a separate layer with the ID so the change can be applied. …
0
votes
2answers
42 views

Problem when adding foreign key

When I'm trying to create a foreign key linked to a primary key in another table I get: #1452 - Cannot add or update a child row: a foreign key constraint fails (`fayer`.`#sql-225c_1d3`, CONSTRAINT …
0
votes
4answers
52 views

How worth is it to assign an FK Index?

I'm a normal "would be DBA" level developer. I've been handling some databases with a few million records. A lot goes around importing data between database and its clone and then using that clone in …
0
votes
2answers
130 views

mysql ( innodb )foreign key constraints problems

Hello I am running into a couple of issues while trying to generate foreign keys for my tables in MySql(Innodb). Can you please help me with them ? Referenced tables : *create table entity { PID …
1
vote
4answers
731 views

Adding & Updating Foreign key in Entity Framework v1

Hello, I'm using .NET 3.5 SP1. I created entity 'Category', based on table 'category_table' and 'MyUser', based on table 'App_User_table'. CREATE TABLE category_table ( catg_id int, catg_name …
1
vote
2answers
457 views

Hibernate unidirectional one to many association - why is a join table better?

In this document (scroll down to the Unidirectional section): http://docs.jboss.org/hibernate/stable/annotations/reference/en/html_single/#entity-mapping-association-collections it says that a …
1
vote
1answer
109 views

How to add not null in table field

create table re(id numeric(1),bin varchar(10)) how to add not null on table as well as foreign key
1
vote
2answers
100 views

Composite Key on a Self Referencing Table

We have a composite primary key for the site table defined below. Functionally, this does exactly as we would like it to. Each site should have a parent site of the same district. Defining the …
3
votes
2answers
141 views

Is it possible to set a unique constraint as a foreign key in another table?

Is it possible to set a unique constraint as a foreign key in another table? If yes, how would you go about declaring it? How would you go about assigning a candidate key? Is it possible? Sorry, I'm …
0
votes
2answers
288 views

To get primary and foreign keys right in ERD

I read my notes and I am now unsure about the keys. My logical diagram This table should be in line with the following physical ERD I have only one foreign key in the table Question. I would …
0
votes
2answers
97 views

How can I make a Django query for the first occurrence of a foreign key in a column?

Basically, I have a table with a bunch of foreign keys and I'm trying to query only the first occurrence of a particular key by the "created" field. Using the Blog/Entry example, if the Entry model …