Tagged Questions
0
votes
1answer
16 views
Composite primary keys or surrogate primary key on relationship entities (entities that are also relations) in Doctrine2
I have a large database where I have entities that are relations. This exactly because of the following comment in the Doctrine 2 manual: I needed to store additional attributes in our relations and ...
0
votes
2answers
51 views
How to make a relation between two tables without foreign key
I'm a total newbie and I'm trying to do a mysql database, using xampp for linux 1.8.1.
I want to make a relation between two tables A and B. For what I know foreign keys create a bijection, or a ...
0
votes
2answers
44 views
Resolving many to many relationship
I have 3 tables that i am trying to figure out how to set the relationships. The database is to track survey questions and answers. A User can answer many questions, A question can have many ...
4
votes
2answers
111 views
Three way (model) relationship
I have the following Schema and Model setup, with this seed data.
My goal is to achieve a three-way-relationship, it may be a wrong term, but at last, that's what I'm calling it.
Three-way as in:
...
0
votes
1answer
55 views
How can I add seed data with correct relationships?
I'm creating forum software using Ruby on Rails. I'm stuck on adding seed data to my database with the correct database relations.
A forum has many topics, and a topic belongs to a forum. That is a ...
0
votes
3answers
175 views
MySQL one-to-many relationship. Different table, or PHP handling?
I am creating a MySQL database in which I have two tables, one for blogs, and one for their locations. What I have done is a field in blogs which is a string of location ids separated by commas: ...
1
vote
1answer
85 views
SQLAlchemy ON DELETE SET NULL while using secondary table
I encountered a basic use case - I have two tables, Nodes and Networks, and they are interconnected using third table IPAddr as a secondary association table:
class Node(Base, BasicValidator):
...
0
votes
1answer
81 views
Creating entity relationship with renamed fields and non-primary key in primary table
The following are two partial tables in which I am trying to define a foreign key relationship.
public class Form
{
[Key, Column("FormID")]
public System.Guid FormGUID { get; set; }
...
0
votes
0answers
56 views
Circular relationships in database model
Hi I have a question about some circular relationships that I am facing with my database design and from what I read circular relationships are not desired. I read a few more similar questions but ...
0
votes
0answers
39 views
Single table with internal relationship - Constraint fails when inserting deleting
I have a table "office" which has the following fields:
id, int(10) unsigned auto_inc
fk_office, int(10) unsigned, can be NULL
address
url
email
An office may depend from another (for ...
2
votes
1answer
65 views
How do I set up a directed many-to-many self-join using :through?
I'm setting up a Rails project for a client, and they want Users (a model) to be able to follow each other (as in Twitter). They also want to be able to keep track of when one user started following ...
1
vote
0answers
61 views
How to append records with enforced referential integrity?
I have a OCDB table that I use to extract data. I currently use it to append the data to a new table and then manipulate it. The problem is I have just added a relationship to that table and when I ...
0
votes
2answers
88 views
Reference to table without foreign key constraint
I have a database and an application that edits the database
I have a table with addresses called ADDRESS (ID, STREETID, NUMBER)
I have a table with street names called STREET (ID, STREETNAME, ...
0
votes
1answer
76 views
Getting a value from a table through a foreign key in Rails?
Hi I have created two models,
class Fixture < ActiveRecord::Base
attr_accessible :away_score, :away_team_id, :home_score, :home_team_id, :result, :week
belongs_to :team, :class_name => Team
...
0
votes
1answer
159 views
Modeling associations between ActiveRecord objects with Redis: avoiding multiple queries
I've been reading / playing around with the idea of using Redis to complement my ActiveRecord models, in particular as a way of modeling relationships. Also watched a few screencasts like this one: ...
2
votes
1answer
60 views
What is wrong with this many-to-many relationship in EF code-first?
I have these schema in my database:
Tb1: { Id:int , NameTb1:varchar(50) }
Tb2: { Id:int , NameTb2:varchar(50) }
Tb1Tb2 { Tb1Id:int , Tb2Id:int }
Obviously Tb1Tb2 is a relationship table and I want ...
0
votes
0answers
50 views
Save related data with level hasmany relation in cakephp 2.0
here i want to save the data without any loop.
in my project the flow is : i havve created three model: order,restaurant,item
In database order_id is saved in restaurant table
order_id and ...
0
votes
1answer
57 views
Do I have referential integrity in this schema design?
I'm concerned that I have a data integrity issue involving the Versions and VersionQuestions tables. For example, if DefMasterID is changed in the Versions table, it will point to a different master ...
4
votes
1answer
131 views
Active Record has_many generates sql with foreign key IS NULL
I don't expect a model with NULL as foreign key to belong to anything!
I have the following rails app, modelling ants and ant hills (inspired by Jozef).
$ rails -v
Rails 3.2.8
$ rails new ant_hill
$ ...
0
votes
1answer
320 views
How to determine cardinality of foreign key using mysql
I am stuck in a problem where i have to find cardinality of a relationship between tables using mysql. Following this post MySQL: How to determine foreign key relationships programmatically?
I have ...
1
vote
1answer
563 views
Linq to Sql Foreign key relationships
Table name: Author
AuthorID -> primary key
FirstName
LastName
Table name: Titles
ISBN -> primary key
BookTitle
EditionNumber
CopyRight
Table name: AuthorISBN
ISBN -> foreign key
AuthorID -> ...
0
votes
1answer
642 views
set null value in a foreign key column?
I have this table
CREATE TABLE [dbo].[CityMaster](
[CityID] [int] NOT NULL,
[City] [varchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[BranchId] [varchar](10) COLLATE ...
4
votes
2answers
169 views
Malfunctioning on deleting from Sqlite database table (Relationship extraordinary behavior)
I havea weird problem in my android application which is related to database relations on foreign keys. The following codes describe my simple database's structure,
i have used SQLiteOpenHelper as a ...
1
vote
1answer
109 views
Relationships on Cakephp 2.0
I have two models : Absence, Students;
Absence fetch name and absence number from Students, now i want to linking model together, but i have been struggling to figure out how to map those ...
0
votes
1answer
112 views
Foreign key constrains for Python data structures without using real databases
I'm looking for a way to manage a set of Python data structures which would nicely fit into a relational schema, but without the overhead of having a real database or parsing SQL. The amount of data ...
1
vote
2answers
72 views
MySQL join four tables and get some kind of SUM result
I have four tables like this:
mysql> describe courses;
+-----------------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra ...
1
vote
1answer
369 views
relations between tables in multiple databases
I am building a complex plataform, and I want to have a dedicated database for each "module" of it. But I need to have a "master" database which has some common tables like the users table. I need to ...
0
votes
1answer
163 views
Unknown attribute when linking two models together
Brief overview of my app.
It's quite basic in that the User first of all creates a set A client on one page and then uses another to create and assign jobs to the user.
My Client model and view are ...
0
votes
2answers
100 views
django: Retrieve object via backwards relationship in view.py, not template
Just starting out to program in python and I'm having the following issue. I have a template that shows details on a supplier, each supplier has employees and on the template page, I want to show the ...
1
vote
1answer
53 views
Using an inverse relationship twice?
I would like to know if I can use the same inverse relationship twice for 2 different relationships?
Here is an example :
Trip
Origin (to-one relationship) MapPoint (inverse ReferencedBy)
...
2
votes
3answers
2k views
CakePHP Model Relationship with Multiple Foreign Keys
In my CakePHP app I have models for Matches and Teams. Each Match has a home_team_id and an away_team_id, both of which reference a different Team.
In my team.php file, I am able to form the ...
0
votes
1answer
137 views
How to access SQL Relationship/Parent/Foreign-Keys in GridView's HyperLinkField?
I have a question about GridView. In my code, I have a HyperLinkField like below:
<asp:HyperLinkField DataTextField="DocumentAlbum.Name" HeaderText="Nama Album" SortExpression="Album"
...
1
vote
1answer
665 views
Kohana v3 ORM Select and Where clause based on different table
Hi I need to do something like this:
$hours->task->job->where('group_id' , '=' , $num)->find_all();
This would return job information. Is there any way to tell orm to return the information from the ...
13
votes
6answers
10k views
Meaing of “n:m” and “1:n” in database design
In database design what do n:m and 1:n mean?
Does it have anything to do with keys or relationships?
0
votes
2answers
251 views
Easy way to observe user activity - how improve my database structure
Welcome,
I need some advise to improve perfomence my web application.
In the begin I had this structure of database:
USER
-id (Primary Key)
-name
-password
-email ....
...
1
vote
1answer
2k views
Changing a relationship / foreign key in Entity Framework - not being persisted
Ive got a WPF app, following the Model View ViewModel pattern, using the Entity Framework to interact with a SQL 2008 database.
Problem:
My problem is i can't change a foreign key value in the ...
2
votes
1answer
284 views
Django Relational database lookups
I cant figure out how to do relationships.
I have a products model and a stores model.
A product has a foreign key to the stores.
So i would like to get the product name, and the store name in the ...
0
votes
4answers
1k views
SQL : one foreign key references primary key in one of several tables
I am working on an application that will be used as an extensible framework for other applications.
One of the fundamental classes is called Node, and Nodes have Content. The SQL tables look like ...