Tagged Questions
The fk-relationship tag has no wiki summary.
41
votes
10answers
52k views
Cannot truncate table because it is being referenced by a FOREIGN KEY constraint?
Using MSSQL2005, Can I truncate a table with a foreign key constraint if I first truncate the child table(the table with the primary key of the FK relationship)?
I know I can use a DELETE without a ...
4
votes
1answer
2k views
How to handle “secondary” keys in Entity Framework
I'm evaluating using EF against an existing schema - the problem is that I can't work out how to set up associations between tables where the foreign key is NOT the primary key of the master table.
...
3
votes
4answers
530 views
Is there a performance hit by added nonenforced foreign keys to a SQL Server 2008 database?
I'm working with a database and I want to start using LINQ To SQL with it. The database doesn't have any FKs inside of it right now for performance reasons. We are inserting millions of rows at a time ...
2
votes
3answers
40 views
SQL FK and Pre-Checking for Existance
I was wondering what everyone's opinion was with regard to pre-checking foreign key look ups before INSERTS and UPDATES versus letting the database handle it. As you know the server will throw an ...
2
votes
4answers
128 views
DBA Question: Best way to use FK's
What and when is the best way to use FK's without geting FK "redundancy".
Let's say that i have three tables Account, Category and Product.
1: Table Account
Definition:
Id, Primary BigInt
Name, ...
2
votes
1answer
4k views
SQL Server 2005: Nullable Foreign Key Constraint
I have a foreign key constraint between tables Sessions and Users. Specifically, Sessions.UID = Users.ID. Sometimes, I want Sessions.UID to be null. Can this be allowed? Any time I try to do this, I ...
1
vote
4answers
55 views
SQL Server 2008 update statement hangs
In my SQL Server 2008 Enterprise I have a database that contains several tables:
Departments - few rows
Persons - a 300+- rows
Permissions - thousands of rows
The primary key of Persons is the ...
1
vote
2answers
74 views
Oracle delete performance
Say I have two tables:
create table parent (
id number not null,
constraint parent_pk primary key(id),
)
create table child (
id number not null,
parent_id number not null,
constraint ...
1
vote
1answer
42 views
increment multiple row FK Ids with trigger on insetion from XLS batch SQL
I had posted other questions relating to this problem, but haven't had any responses to directly address the issue of multiple row data imports from XLS. I'm an infrequent user of SQL or DBs in ...
1
vote
1answer
914 views
Entity Framework - How do I join tables on non-primary key columns in secondary tables?
I want to join 2 tables using entity framework. I want the join to the second table to be on a non-primary key column.
e.g. I have a table Foo with fields
Foo.Id (PK)
Foo.DbValue
and table Bar
...
1
vote
3answers
532 views
Oracle: FK on union of two tables?
I have a situation which (simplified) looks like this:
Table UNITS has a PK on UNITS.NAME. (unit name, varchar(12))
Table DEPTS has a PK on DEPTS.NAME. (dept name, varchar(12))
I want to create a ...
0
votes
1answer
99 views
SQL design advice: One FK column, many tables to refernce
I have a situation where I have a table that has a soft foreign key to link records in the table to one of many other tables depending on another value in the table. To demonstrate:
TableOfTables: ...