0
votes
1answer
23 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 …
2
votes
2answers
30 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
4answers
71 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
96 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
32 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
27 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 …
0
votes
2answers
41 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
33 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 …
2
votes
4answers
88 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
87 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
85 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() …
0
votes
1answer
65 views
hibernate how to create createalias left join?
@Entity
@Table(name = "BOOKTEST")
@NamedQueries({@NamedQuery(name = "Booktest.findAll", query = "SELECT b FROM Booktest b"), @NamedQuery(name = "Booktest.findById", query = "SELECT …
0
votes
1answer
34 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 da …
1
vote
3answers
119 views
Speeding up SQL query when sorting on foreign keys
This is more of a generic SQL problem but I'm using Firebird 2.5 if anyone knows of a Firebird/Interbase specific optimization. First, the following is a simplified example schema …
3
votes
4answers
92 views
What is the problem with foreign key cascade multiple paths and cycles?
In MSSQL 2005 I just struck the infamous error message:
Introducing FOREIGN KEY constraint XXX on table YYY may cause cycles or multiple cascade paths. Specify ON DELETE NO AC …
