Tagged Questions
The relations tag has no wiki summary.
10
votes
1answer
747 views
Using Include() with inherited entities problem
In EF eager loading related entities is easy.
But I'm having difficulties including inherited entities when loading data using table-per-type model.
This is my model:
Entities:
ArticleBase (base ...
8
votes
1answer
2k views
Cascade delete in Ruby ActiveRecord models?
I was following the screencast on rubyonrails.org (creating the blog).
I have following models:
comment.rb
class Comment < ActiveRecord::Base
belongs_to :post
validates_presence_of :body ...
6
votes
9answers
323 views
Why are positional queries bad?
I'm reading CJ Date's SQL and Relational Theory: How to Write Accurate SQL Code, and he makes the case that positional queries are bad — for example, this INSERT:
INSERT INTO t VALUES (1, 2, 3)
...
3
votes
4answers
111 views
MySQL many-to-many complement set
I've been looking all over the net and asking people for guidance but nobody seems to know the right (relatively fast) solution to the problem:
I have three tables, classic many-to-many solution:
...
3
votes
1answer
93 views
Calculate the estimated size of the self-join operation R x R on a relatiion R, given a histogram for R
Query optimizers typically use summaries of data distributions to estimate the sizes of the intermediate tables generated during query processing. One popular such summarization scheme is a histogram, ...
3
votes
6answers
175 views
Database structure - To join or not to join
We're drawing up the database structure with the help of mySQL Workbench for a new app and the number of joins required to make a listing of the data is increasing drastically as the many-to-many ...
2
votes
1answer
47 views
How do I make an ActiveRecord scope that doesn't affect the query in Rails 3 using Arel (presumably)?
Essentially I am looking for a no-op type of relation to apply to a chain of scopes.
Lets say I have a chain of scopes:
Post.approved.published.all
Now, for debugging purposes, I wish to make the ...
2
votes
1answer
327 views
cakephp two foreign keys in same table
I have a tournament website with CakePHP, where i needs to manage a condition like below details:
There will be a fight competition between two competitor's where i needs to manage a match division ...
2
votes
1answer
800 views
Yii - Ordered dropDownList using relations?
I have some forms in Yii using the following to get lists of data from related tables in the form of a drop down:
dropDownList(CHtml::listData(Company::model()->findAll(array('order' => ...
2
votes
4answers
1k views
PHP / Doctrine ORM multiple 'one-to-one' relations to the same class
Just working on a project where I have a class called 'Product' and a class called 'Image'. Each product has two types of images, one 'front' image and one 'back' image, so I defined two fields, one ...
2
votes
3answers
3k views
Implementing foreign key type relationships in XSD schema
I'm trying to wrap my head around xml schemas and one thing I'm trying to figure out is how to do relational type schemas where on element refers to another, possibly in another schema altogether. ...
2
votes
2answers
482 views
Sequential numbering in database (MSACCESS)
Summary:
I have a table that has a uique primary key identifying each record. I also have three more fields that can identify a record:
Category
CategoryNumber
DuplicateNumber
When I add a new ...
2
votes
6answers
871 views
SQL database problems with addressbook table design
I am writing a addressbook module for my software right now. I have the database set up so far that it supports a very flexible address-book configuration.
I can create n-entries for every type I ...
1
vote
1answer
99 views
Yii Framework - two relations via the same “through” table
Mine goal is to have possibility to search Documents via the Users Names and Surnames and also via Recrutation Year and Semester.
Documents are related only to Declarations in such a way that Document ...
1
vote
1answer
33 views
Associations in CakePHP with non-conventional database
We are converting an application for use with CakePHP 2.0.3.
For some reason, I cannot seem to set proper relations between my models.
Here's an example:
User (id, petid, country, picid, ...)
Pet ...
1
vote
1answer
100 views
DISCUSSION - Complex Database Relations (Junction Tables)
Welcome! My Question is about the idea of combining two junction tables into one, for similarly related tables. Please read to see what I mean. Also note that this is indeed a problem I am faced with ...
1
vote
1answer
162 views
Relations on composite keys using sqlalchemy
I have this simple model of Author - Books and can't find a way to make firstName and lastName a composite key and use it in relation. Any ideas?
from sqlalchemy import create_engine, ForeignKey, ...
1
vote
1answer
29 views
How do handle relations in document stores
I do understand that relations are not really needed in document stores, but for some things they can still be useful. Or am I wrong (snowed in on RDBMS)?
For instance:
Let's say that I got a bunch ...
1
vote
2answers
116 views
Filtering related data in a DataGridView
I have a DataGridView that pulls data from a couple tables similarly to this setup. It works great. Good post and answer. Continuing with the example in that post, I now want to create a filter ...
1
vote
1answer
32 views
db relations vs software solutions to keep consistancy (performance)
From my point of view the database is always the bottleneck. Since i can scale the cpu power to any needed value. The db ressources are limited even with clustering or replication. I might be wrong ...
1
vote
1answer
67 views
How to set a relation of an object of Core Data entity
I have an entity mainEntity with three one-to-many relations to three different entities entity1, entity2 and entity3 (relations are named after objects they're referring to).
entity mainEntity
...
1
vote
2answers
872 views
Excel dependent dropdown lists (With/without VBA)
I'm completely new to VBA, even though I'm quite familiar with regular VB. I don't know if this has to be done through VBA, or if it can be done with built-in Excel functionalities.
Basically, I have ...
1
vote
2answers
551 views
Yii JSON with relations
How I can return object with all relations(ans sub objects relations?).
Now I use EJsonBehavior but it returns only first level relations, not sub related objects.
My source code:
$order = ...
1
vote
3answers
69 views
Counting how many time a relation is pointing at the same key
SELECT t.tag_name
FROM tags t
JOIN resource_tags rt ON rt.tag_id = t.tag_id
JOIN resource r ON r.resource_id = rt.resource_id
JOIN visitor_resource vr ON vr.resource_id = rt.resource_id
JOIN ...
1
vote
1answer
190 views
Access - Show results of joined tables even if some values don't match
Access Database
table contacts
--------------
id
surname
name
table relations
---------------
contact_id
relation_id
Both contact_id and relation_id are foreign keys referenced to table contacts' ...
1
vote
1answer
84 views
How to magically supply Active Record scopes with arguments?
I'm not sure this is even possible, but let's see if one of you comes up with a solution. This is more or less about code quality in terms of readability and not an actual problem because I already ...
1
vote
1answer
151 views
MySQL insert with undefined foreign key
I have some table with such schema (simplified):
CREATE TABLE folders(
id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
parent INT(11) UNSIGNED NOT NULL,
PRIMARY KEY (id),
INDEX ...
1
vote
1answer
433 views
Kohana 3 ORM: Saving relationships
<?php
class Model_Cliente extends ORM {
protected $_table_name = 'clientes';
protected $_primary_key = 'id';
protected $_has_one = array('loja' => array());
}
?>
<?php
class Model_Loja ...
1
vote
1answer
166 views
ASP MVC Delete only the relation between 2 tables (many-to-many relation)
Using ASP MVC with active record.
Ive got 2 tables with records that sometimes are related and sometimes aren't. The relation is defined by the user. 1 table has projects, the other has devices. ...
1
vote
1answer
62 views
Django GenericManyToMany?
I want to make my Book model belongs to multiple Libraries, Collections, References and Editors, together.
Is it possible to do it with generic relations ?
Like that :
content_type = ...
1
vote
1answer
140 views
Work with relations in Subsonic
I am using subsonic 3.0.3(ActiveRecords) in my winforms project. I am trying very hard to use Collections for my entities but so far I have been unable to do that .
Please allow me to make myself ...
1
vote
3answers
208 views
How to get Hibernate object relations dynamically?
I'm using Hibernate and I need to find a way of retrieving the relations for an object dynamically at run-time. I can't find this in the API.
Can anyone point me in the right direction please?
...
1
vote
3answers
818 views
Doctrine: sort field in relations table (one to many), how to insert the sort number?
I have two tables, content and images (and a ContentImages table for the one to many relation, so that's actually 3 tables).
The following code saves the relation (in the action > ...
1
vote
2answers
83 views
How to get the tag relations results just by using SQL(s)?
Table tags:
article_id tag
1 Language
1 Java
1 c++
2 Language
2 c++
3 c++
and how can I write SQL(s) query(s) to ...
1
vote
1answer
362 views
Doctrine ORM - Implement self-relations
Can anyone give me an example of how to implement a class self-relation?
Thanks in advance,
Best regards!
1
vote
1answer
493 views
Referencing table with two different foreign keys to the same table in Kohana ORM
table user:
|id|name|employee_priority_id|user_priority_id|
table priority:
|id|name|
As you can see, there are two foreign fields to the same table. But Kohana ORM default looks for a field called ...
0
votes
1answer
40 views
Nested relations in Drupal
I have a D7 website where users can make content (obviously...). So every node has it's own author. Every author is a member of an organization. But he can be a member of more then one organization. ...
0
votes
0answers
22 views
Rails chained relations
I'm not sure how to ask so I'll give an example of what I'd like to do
there are 3 models: User, Msg, Comment
user has_many :msgs
Msg belongs_to :users
Msg has_many :comments
comment has_on :msg
...
0
votes
1answer
42 views
active record relations – who needs it?
Well, I`m confused about rails queries. For example:
Affiche belongs_to :place
Place has_many :affiches
We can do this now:
@affiches = Affiche.all( :joins => :place )
or
@affiches = ...
0
votes
0answers
28 views
complex relations between two models
I have two models, I`d like to connect:
Affiche has_many :albums
Album belongs_to :affiche
All I`m doing now is:
@affiche = Affiche.find(params[:id] )
<console gives:>
Affiche Load (0.3ms) ...
0
votes
1answer
56 views
Why can I only see postgreSQL relations or tables when I'm logged in as the postgres user? [closed]
Possible Duplicate:
postgresql database owner can't access database - “No relations found.”
The core problem: I have a Django website that's complaining about relations ...
0
votes
2answers
358 views
Yii relations trouble when trying to display CGridView from 2 models
Image describing the tables -> http://i.stack.imgur.com/ki2YP.jpg
Each of the tables is a model.
Main model which shows through CGridView is "RegularTask".
Now I need it to display fields from ...
0
votes
1answer
57 views
CakePHP controller name in behavior
I created relation Post hasMany Photos, Photos actsAs ImageBehavior.
How put to $data['Photo']['model'] = 'Post'? Automated?
0
votes
1answer
79 views
CakePHP adding data with hasMany relation without form
I have relation: Post hasMany SomeModel
Post has fields: id, title, text
SomeModel has fields: id, unique_name
I create form:
echo $form->create('Post');
echo $form->input('title');
echo ...
0
votes
3answers
303 views
Mongoid: undefined method `name' for nil:NilClass, even when it exists
When working with one-to-many relations in with Rails 3.1 and Mongoid, I keep bumping my head on undefined method `name' for nil:NilClass even when I'm positive it exists. Either it's a stupid mistake ...
0
votes
1answer
46 views
Doctrine 2 - relation that references the table itself
I have a category table, and I want one of the fields to reference an entity from the same table (also the id that references it has to be different then the object itself).
Category:
...
name: ...
0
votes
3answers
48 views
A simple SQL question
I have three tables: hosting_pack, hosting_attr and hosting_attr_value.
One hosting_category can have many hosting_packs and many hosting_attributes.
To know the hosting_value, we must know the ...
0
votes
1answer
55 views
Filter relations by user
I have this (very simplified) Model:
class Container(models.Model):
name = models.CharField(max_length=100)
rights = models.ForeignKey(AccessRights)
class ChildA(models.Model):
name = ...
0
votes
2answers
80 views
Rails has_many ajax
Lets say I have a recipe that has_many ingredients, I want the recipe creating page to have forms for each ingredient. How can I make it where a user can click a button to add a new ingredient then ...
0
votes
2answers
26 views
updating a table fields where fields in table A = fields in table B
HELP! here is my problem i dont know what is going wrong I have 2 tables one of sales and other of transactions, the transaction table is the same as the sales table but is very detailed the sales ...