Questions in this tag typically involve the association that a set of data has with other set(s) of data.

learn more… | top users | synonyms

0
votes
1answer
55 views

show related tables records in asp.net

We have two related tables with one-to-many relationship: Assignment and Submission We have an aspx page in which we want to show Assignments (where AssignmentClassID==X) and Submission of that ...
0
votes
0answers
189 views

Core Data Managed Object one-to-many relationship insert/update save

Lets assume I have person->phones relationship (One to many of course). Initial insert save is working correctly where I do: if (does not exist) { user = (Member *)[NSEntityDescription ...
-5
votes
1answer
110 views

Estimate relationship between X and Y in R [closed]

I want to estimate the relationship between X and Y (from data m) using P (see below) at 100 equal points over (0, 10). How can I do this using R? > m X Y 1 0.5 6.0 2 1.5 ...
0
votes
0answers
27 views

Can you relate two table entries on the same table Oracle table

I am not very experienced with Oracle tables and not sure of some functionality that could help me with my possible issue. I have two records in a table that both have three entries in them each ...
0
votes
2answers
62 views

Java-EE-6: How to store a boolean in a @ManyToMany and @ManyToOne relationships?

I am working on a data model that basically consists of users and documents. Now everytime a new document is added, there should be a flag that identifies a document as "unseen" as long as the ...
0
votes
0answers
52 views

How to define mutually exclusive subtypes in access

I want to do the following in access: I have 2 tables: "Matrix" and "Land" My client needs to keep track of events that can occur to a Matrix or a Land, but in the future, more tables might need ...
0
votes
1answer
43 views

Drupal 7 expanding fields

I have a field in a cms called 'services' the services is a lsit of checkboxes with the values 1|digital 2|web 3|print 4|apps The issue is each of the options has a related url. Is there way to ...
4
votes
3answers
232 views

ASP.NET MVC Entity Framework Relationship binding

I'm using Entity Framework 5.0 for my MVC4 project. There's a problem with it. When i give a db model to any view, controller send model with no relationship example; I have User class and with ...
0
votes
1answer
384 views

Laravel Eloquent one-to-many relationship

I am having real problems getting Laravel's Eloquent ORM to return data for a relationship. My migrations (database schema): Schema::table('users', function($table) { $table->engine = ...
1
vote
2answers
106 views

Ruby on Rails Relationship between 3 models

I am following a tutorial made for Rails 3, I am using Rails 3.2 but think I am following it correctly but am getting an error, My classes are as follows and the error occurs when I use, ...
4
votes
0answers
182 views

How to map identifying relationship in Entity Framework 5 code first child entity with multiple mutually exclusive parent entities

I'm using Entity Framework 5 Code First and I have the following model: class Document { public int Id {get;set;} public String Name {get;set;} public IList<Page> Pages {get;set;} ...
1
vote
0answers
78 views

Some relationship-status not getting returned when clearly visible on profile

When using the open graph api to list - all friends by relationship_status some friends are getting returned empty for relationship_status. I have the right permissions set as most friends ...
0
votes
1answer
116 views

How should one define a second date hierarchy in SSAS?

I have a time table and a sales fact table with multiple dates (order received date, ship date). I want to define a hierarchy on the order received date and another hierarchy on the ship date. The ...
3
votes
1answer
81 views

paper_trail and keeping relations untouched

Is there any possibility to force paper_trail to not change relations when it's version changes? My app is a betting software and I need to keep user bets on the one that was active at the time when ...
1
vote
1answer
31 views

Grails 1:m get most relations

I'm relatively new to Grails. I have the following class House { Integer number Integer maxResidents static belongsTo = [town: Town] } class Town { String name static hasMany ...
1
vote
1answer
45 views

Core Data Relationships after entities are filled up with data

I have two entities Team & TeamMembers which are initially filled with data from two json files. So there is no connection between those entities at the moment. Is it possible to make ...
1
vote
1answer
165 views

association relationship in UML

As i read through software engineering appendix 1 from Roger Pressman book that an association between two classes means that there is a structural relationship between them what structural ...
0
votes
2answers
79 views

How to select random ID in Mysql query

SELECT e.ent_seq, GROUP_CONCAT(DISTINCT kei.keb SEPARATOR'; ')AS kebs, GROUP_CONCAT(DISTINCT rei.reb SEPARATOR '; ') AS rebs, GROUP_CONCAT(DISTINCT sei.mean SEPARATOR '; ') ...
1
vote
2answers
146 views

MySql Select data is many to many Relationship in PHP

ENTRY (Table) ent_seq entry 100010 1 100020 2 100030 3 100040 4 K_ELE (Table) KID entry keb 1 1 食べる 2 2 日本 3 3 先生 R_ELE (Table) RID entry ...
2
votes
3answers
69 views

How to make a copy of a relational record in the same tables?

I have three related tables - Users have Groups, and Groups have Items: Id UserName 1 Joe 2 Fred Id GroupName UserId 1 TestGr1 1 2 TestGr2 1 Id ItemName GroupId ...
-2
votes
1answer
58 views

how to insert records on a table having one is to many relationship in sql server 2005 from c# [closed]

Im having trouble in inserting records in sql server from c#(windows application) wherein the tables has a one to many relationship, the app always give me an error. Please help me to know this one. ...
0
votes
1answer
132 views

rails inheritance

Good Evening Guys, I have three scaffolds: rails generate scaffold person alter:integer, name:string rails generate scaffold trainer rails generate scaffold sportler class Person < ...
0
votes
1answer
39 views

rails database query, html drop down, interaction 1:n relation

Good Evening Guys, I have generated four scaffolds Person, Trainer, Sportsman and Index. class Person < ActiveRecord::Base attr_accessible :alter, :name end class Sportler < Person ...
-2
votes
1answer
81 views

Datamapper php relations [closed]

Well, I have 3 tables: sorty with fields id, name, fStart, fEnd bol with fields id, fol, and bol_sorty with id, bol_id, sorty_id When I add a new register to sorty, it must add to bol the number of ...
0
votes
0answers
47 views

how i make relationships between tables in rails?

this is what i am trying to make: http://i45.tinypic.com/vfjtdj.png how should be the model for those tables? i need something like this? for institutions class institution < ActiveRecord::Base ...
1
vote
2answers
69 views

PSQL unique constraint on two columns

I have a table which I use to link two more tables together in a 1 to many relationship. TableA id name TableB id name LinkTable TableA_id TableB_id Basically, one of TableA can have many of ...
0
votes
2answers
44 views

connecting records in 3 tables randomly

I have three tables: categories (id) product_models(id, category_id) products(id, product_id, category_id) There are records on each table (lorem ipsum content), i want to connect the data. I've ...
0
votes
1answer
111 views

Doctrine oneToMany - querying for one

I have a one to many relationship where one page has many versions. **page** id parent_id **page_version** id page_id title published date These are related by the foreign key page_id. So I have ...
1
vote
1answer
29 views

How to access my user activity on other users' pages or fan pages using the Graph API?

I would like to find any of my own activity (post, comment, share, etc.) on another user's page or a fan page. That is, obtain a list of all the comments, posts and whatnot that I have made on user ...
0
votes
0answers
63 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 ...
1
vote
1answer
82 views

How do I avoid multiple definition errors when purposefully linking the same object more than once?

I'm using gnu make, and gcc for compiling. I'm on linux (Ubuntu) Here is a diagram for the game black jack where the nodes represent eventual object files. I have organized the code where ...
0
votes
0answers
247 views

Difference between conceptual schema and relational schema

I am trying to distinguish between conceptual schema and relational schema. I have a project which requires ER Diagram as part of conceptual schema. However in the second part it requires the ER ...
0
votes
1answer
87 views

CurrentDB.Execute Active Record Reference

Access 2010 here. There are two tables in a 1-to-1 relationship (MainDB, Parts) and a command from the form (MainForm) that operates on the "Parts" table: CurrentDb.Execute "DELETE * FROM Parts ...
0
votes
0answers
45 views

Access Exclusive one-to-one Relationships

Access 2010 here. A fairly simple question. Is there such thing as an exclusive relationship between tables in Access? What I mean is for a certain table to only have a one-to-one relationship with a ...
0
votes
0answers
97 views

CakePHP CounterCache/CounterScope only updates after parent is updated

I have two models: WebinarAttendee and Webinar WebinarAttendee has two counters for Webinar: attendees_count for total registered users and attendees_online_count for users watching the webinar now. ...
0
votes
0answers
112 views

Creating an entity code first database with complex objects with relationships between them

I'm trying to create a database with code first entity framework and am not clear on how this is done with complex nested objects. I've read the tutorials on MS and some blogs etc but they seem very ...
-1
votes
1answer
43 views

Need help understanding / creating / posting relationships in DB tables [closed]

I'm new to PHP and mysql and I'm looking for a good tutorial that will help me understand SQL relationships and how to insert this data into separate tables ('job', 'job_info') from a form; yet I want ...
0
votes
1answer
60 views

Sqlalchemy thread messaging system

I'm newbie to sqlalchemy. Now developing site with Flask. I want to orginize message system with threads. Something like facebook dialogs. I have following models and this code works: ...
0
votes
0answers
74 views

Database: Do entity relationships require attributes with foreign keys?

I started wondering weather or not relationships between entities required an attribute at the entity receiving the action (participation constraint) after I saw that Visio was including at least one ...
0
votes
0answers
46 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 ...
0
votes
1answer
86 views

Core Data - Find out if a relationship between two objects exists

I'm making an app with a questionnaire in it and I'm using Core Data to hold all of its data. There are three entities: Person (the person taking taking the questionnaire), Question (the question), ...
0
votes
1answer
167 views

JPA, flush and Entity Manager sync

I'm using Java EE, Netbeans and a facade session bean to implement the JPA layer (eclipselink). I've a two table for example: Garden (1) ---> Tree (n). (Script A) Now, I execute this snippet: ...
-1
votes
1answer
154 views

How can i list all Items that belongs to all the Subcategories of a certain Category? ROR

Here are my models relationships: Category has_many Subcategories Subcategory belongs_to Category (Subcategories has a category_id field) Subcategory has_many items Item belongs_to Subcategory ...
0
votes
1answer
56 views

Rails 3 Model Relationships

I'm kinda stumped on how to relate some models I have. Was hoping for some pointers or ideas! Let's say I have 3 models, named "MinorTeam", "MajorTeam", and "Game". Each game references two teams; ...
0
votes
1answer
59 views

Finding relationship between xml nodes using js and or php

this is more of a speculative question as to what you all consider to be the best approach or smartest method to a particular problem I have. I am developing a web app currently which is largely ...
4
votes
1answer
169 views

CoreData relationships not merging from one MOC to another

I've been banging my head against the wall with this bug. Basically relationships aren't being merged from one context to another correctly. Let's say I have two entity types in my model, Student ...
3
votes
1answer
228 views

Can SQLAlchemy automatically create relationships from a database schema?

Starting from an existing (SQLite) database with foreign keys, can SQLAlchemy automatically build relationships? SQLAlchemy classes are automatically created via __table_args__ = {'autoload': True}. ...
2
votes
1answer
72 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 ...
0
votes
2answers
140 views

Which is the best design for categorizing items?

I have four levels for categorizing items according to their attributes. Some items may not require all subcategory levels and some items may share the same subcategory values. Examples: ...
1
vote
0answers
67 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 ...

1 2 3 4 5 20