0
votes
1answer
30 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 …
0
votes
1answer
27 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 …
0
votes
4answers
38 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.[Cours …
2
votes
2answers
32 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) optio …
0
votes
1answer
30 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 …
0
votes
4answers
72 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. Her …
0
votes
5answers
100 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 [o …
1
vote
3answers
41 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 …
1
vote
1answer
17 views
SQL Server CE nvarchar foreign keys with trailing whitespace
In SQL Server CE, foreign key constraints on nvarchar fields are only enforced after dropping the trailing whitespace. This means that if the PK is "foo " I can insert "foo" into t …
1
vote
1answer
33 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 …
2
votes
4answers
90 views
How do I know if record from an SQL database is being used elsewhere?
Is there a way to know that a record is being used by another record in the database?
Using deleting as an example: When I create an SQL statement trying to delete a group in dbo …
2
votes
2answers
36 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` v …
0
votes
2answers
48 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 …
2
votes
2answers
88 views
Dynamic Foreign Keys - How To Implement?
I have 4 tables (appointed, class, elected, status) that I want to cross reference into a single table's (members) column. The values of the of 4 tables are time sensitive based of …
0
votes
2answers
102 views
Hibernate foreign key mapping?
I have an entity A that has a foreign key of entity B:
entity A --> id, entity_a_name, foreign_key_entity_B
When I call
return session.createCriteria(EntityA.class).list() …
