Tagged Questions

11
votes
15answers
485 views

Why are foreign keys more used in theory than in practice?

When you study relational theory foreign keys are, of course, mandatory. But in practice, in every place I worked, table products and joins are always done by specifying the keys explicitly in the …
1
vote
1answer
55 views

SQL query to find users that don’t have any subscription to a specified list (many-to-many).

Having two tables, "users" and "lists", and a many-to-many "subscriptions" table relating users to lists (thus having foreign keys user_id and list_id), what would be a single SQL query to find all …
1
vote
2answers
34 views

Necessity of foreign key in this case(innoDB/mysql)

Hi, i recently migrated my whole DB from myisam to innodb. I am fairly new to all this so i have a question regarding the use of the foreign key. Lets say i have two tables: users, messages. users …
0
votes
1answer
41 views

Entity Framework: Adding a scalar property which is equal to a FK id

Hi guys Short Question: Basically I am trying to add a scalar property to my entity which holds the ID of a FK entity. What I have tried to do thus far: What I have tried so far is adding the …
0
votes
1answer
58 views

SQL Server: Self-reference FK, trigger instead of ON DELETE CASCADE

Hello, I need to perform an ON DELETE CASCADE on my table named CATEGORY, which has the following columls CAT_ID (BIGINT) NAME (VARCHAR) PARENT_CAT_ID (BIGINT) PARENT_CAT_ID is a FK on CAT_ID. …
0
votes
4answers
59 views

SQL DROP TABLE foreign key constraint

If I want to delete all the tables in my database like this, will it take care of the foreign key constraint? If not, how do I take care of that first? GO IF OBJECT_ID('dbo.[Course]','U') IS NOT NULL …
0
votes
1answer
32 views

foreign keys in sql server 2005

I having trouble creating a foreign key in sql 2005. my primary key table has a primary key that spans 2 columns. I want to create my foreign key so it references a column in my primary table but I …
2
votes
2answers
36 views

Non-Null Foreign Keys as Database Standard

Background: today, an issue arose while using SQL Server Reporting Services. It seems that SSRS drop-down parameters in the report viewer don't allow you to indicate a (null) option so that you can …
1
vote
5answers
85 views

Database Design w/ Foreign Keys Question

I'm trying to use foreign keys properly to maintain data integrity. I'm not really a database guy so I'm wondering if there is some general design principle I don't know about. Here's an example of …
0
votes
5answers
115 views

Can someone explain MySQL foreign keys

I know what they are my question is, how do you link them or are they automatically linked when you have identical names in different tables. Here is an example: Say I have an [orders] table and a …
1
vote
1answer
48 views

Rename foreign key system name in SQL Server Management Studio is failing

The method or operation is not permitted. I assume this is a permission's issue, but I can't figure out where I would change it. It is strange because I can rename an index with no issue. …
1
vote
3answers
54 views

Does MySQL InnoDB always require an index for each foreign key constraint?

I am using phpMyAdmin. In order to set up a foreign key constraint with InnoDB (under the "Relation View" link on the Structure tab) it appears that I need to add an index for the field to which I …
0
votes
2answers
65 views

How to insert foreign key value into table

I want to insert the product in the product table but the product table is also having a category Id which is the foreign key ,How will I insert the foreign key through code please tell me. i have …
0
votes
1answer
39 views

Linq To SQL: Table relationships

Assume I have a two tables, A and B. Table A has a primary Key called A_ID of type int, and table B has a foreign key called A_ID. When I add the two tables to a Linq To SQL data context class it …
2
votes
2answers
41 views

Optimize Join sentence with foreign keys, and show records with nulls

Hi guys I have the following structure SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `sis_param_tax` ( `id` int(5) NOT NULL auto_increment, `description` varchar(50) NOT NULL, …

1 2 3 4 5 17 next
15 30 50 per page