0
votes
1answer
28 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 …
2
votes
2answers
26 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
80 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 …
1
vote
3answers
104 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 …
2
votes
2answers
70 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 …
1
vote
2answers
36 views
What is the idiomatic way to implement foreign keys in CouchDB?
Let me state a simple example: You have an Order and a Shopping Cart. One way I envision persisting this is to save an Order document and a Cart document. The Order document could …
0
votes
1answer
42 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
2answers
40 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
21 views
hibernate foreign key
i have entity A that has foreign key to entity B, does entity B need to have foreign key back to entity A? if yes, how?
coz entity B, id already used for primary key
entity A --> …
0
votes
1answer
16 views
delete entity that map with another entity
entity A --> id, entity_a_name, foreign_key_entity_B
entity B ---> id, entity_b_name
when i delete entity B record, it suppose to auto delete entity A that has foreign_key_entity …
3
votes
4answers
50 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 …
1
vote
5answers
64 views
Bidirectional foreign key constraint
I'm thinking of designing a database schema similar to the following:
Person (
PersonID int primary key,
PrimaryAddressID int not null,
...
)
Address (
AddressID int prim …
0
votes
2answers
58 views
Doctrine PHP Question
I was wondering if you can specify the order in which table definitions and data fixtures are loaded using the CLI. My problem is that I have two tables, each having a foreign key …
2
votes
1answer
62 views
Django ORM - select_related and order_by with foreign keys
I have a simple music schema: Artist, Release, Track, and Song. The first 3 are all logical constructs while the fourth (Song) is a specific instance of an (Artist, Release, Track …
0
votes
6answers
88 views
Update: How to implement Foreign Key concept in MySQL when we do not have referential integrity features in MySQL ?
Hi,
My question is regarding referential integrity concept in MySQL Database. Due to some kind of restrictions from our DBA we are not allowed to use referential integrity featur …
